forked from claranet/terraform-azurerm-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
62 lines (51 loc) · 1.52 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
output "redis_id" {
value = azurerm_redis_cache.redis.id
description = "Redis instance id"
}
output "redis_name" {
value = azurerm_redis_cache.redis.name
description = "Redis instance name"
}
output "redis_hostname" {
value = azurerm_redis_cache.redis.hostname
description = "Redis instance hostname"
}
output "redis_ssl_port" {
value = azurerm_redis_cache.redis.ssl_port
description = "Redis instance SSL port"
}
output "redis_port" {
value = azurerm_redis_cache.redis.port
description = "Redis instance port"
}
output "redis_primary_access_key" {
sensitive = true
value = azurerm_redis_cache.redis.primary_access_key
description = "Redis primary access key"
}
output "redis_secondary_access_key" {
sensitive = true
value = azurerm_redis_cache.redis.secondary_access_key
description = "Redis secondary access key"
}
output "redis_private_static_ip_address" {
value = azurerm_redis_cache.redis.private_static_ip_address
description = "Redis private static IP address"
}
output "redis_sku_name" {
value = azurerm_redis_cache.redis.sku_name
description = "Redis SKU name"
}
output "redis_family" {
value = azurerm_redis_cache.redis.family
description = "Redis family"
}
output "redis_capacity" {
value = azurerm_redis_cache.redis.capacity
description = "Redis capacity"
}
output "redis_configuration" {
sensitive = true
value = azurerm_redis_cache.redis.redis_configuration
description = "Redis configuration"
}