|
1 | 1 | output "elasticache_replication_group_id" {
|
2 |
| - value = "${module.elasticache_redis.elasticache_replication_group_id}" |
| 2 | + value = module.elasticache_redis.elasticache_replication_group_id |
3 | 3 | }
|
4 | 4 |
|
5 | 5 | output "elasticache_replication_group_primary_endpoint_address" {
|
6 |
| - value = "${module.elasticache_redis.elasticache_replication_group_primary_endpoint_address}" |
| 6 | + value = module.elasticache_redis.elasticache_replication_group_primary_endpoint_address |
7 | 7 | }
|
8 | 8 |
|
9 | 9 | output "elasticache_replication_group_member_clusters" {
|
10 |
| - value = "${module.elasticache_redis.elasticache_replication_group_member_clusters}" |
| 10 | + value = module.elasticache_redis.elasticache_replication_group_member_clusters |
11 | 11 | }
|
12 | 12 |
|
13 | 13 | output "elasticache_parameter_group_id" {
|
14 |
| - value = "${module.elasticache_redis.elasticache_parameter_group_id}" |
| 14 | + value = module.elasticache_redis.elasticache_parameter_group_id |
15 | 15 | }
|
16 | 16 |
|
17 | 17 | output "security_group_id" {
|
18 |
| - value = "${module.elasticache_redis.security_group_id}" |
| 18 | + value = module.elasticache_redis.security_group_id |
19 | 19 | }
|
20 | 20 |
|
21 | 21 | output "security_group_arn" {
|
22 |
| - value = "${module.elasticache_redis.security_group_arn}" |
| 22 | + value = module.elasticache_redis.security_group_arn |
23 | 23 | }
|
24 | 24 |
|
25 | 25 | output "security_group_vpc_id" {
|
26 |
| - value = "${module.elasticache_redis.security_group_vpc_id}" |
| 26 | + value = module.elasticache_redis.security_group_vpc_id |
27 | 27 | }
|
28 | 28 |
|
29 | 29 | output "security_group_owner_id" {
|
30 |
| - value = "${module.elasticache_redis.security_group_owner_id}" |
| 30 | + value = module.elasticache_redis.security_group_owner_id |
31 | 31 | }
|
32 | 32 |
|
33 | 33 | output "security_group_name" {
|
34 |
| - value = "${module.elasticache_redis.security_group_name}" |
| 34 | + value = module.elasticache_redis.security_group_name |
35 | 35 | }
|
36 | 36 |
|
37 | 37 | output "security_group_description" {
|
38 |
| - value = "${module.elasticache_redis.security_group_description}" |
| 38 | + value = module.elasticache_redis.security_group_description |
39 | 39 | }
|
40 | 40 |
|
41 | 41 | output "security_group_ingress" {
|
42 |
| - value = "${module.elasticache_redis.security_group_ingress}" |
| 42 | + value = module.elasticache_redis.security_group_ingress |
43 | 43 | }
|
44 | 44 |
|
45 | 45 | output "security_group_egress" {
|
46 |
| - value = "${module.elasticache_redis.security_group_egress}" |
| 46 | + value = module.elasticache_redis.security_group_egress |
47 | 47 | }
|
0 commit comments