This repository was archived by the owner on Sep 26, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,12 +111,12 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" {
111
111
}
112
112
113
113
module "dns" {
114
- source = " git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.2.0 "
114
+ source = " git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.2.1 "
115
115
enabled = " ${ var . enabled } "
116
116
namespace = " ${ var . namespace } "
117
117
name = " ${ var . name } "
118
118
stage = " ${ var . stage } "
119
119
ttl = 60
120
120
zone_id = " ${ var . zone_id } "
121
- records = [" ${ aws_elasticache_replication_group . default . primary_endpoint_address } " ]
121
+ records = [" ${ aws_elasticache_replication_group . default . * . primary_endpoint_address } " ]
122
122
}
Original file line number Diff line number Diff line change 1
1
output "id" {
2
- value = " ${ aws_elasticache_replication_group . default . id } "
2
+ value = " ${ join ( " " , aws_elasticache_replication_group. default . * . id ) } "
3
3
}
4
4
5
5
output "security_group_id" {
6
- value = " ${ aws_security_group . default . id } "
6
+ value = " ${ join ( " " , aws_security_group. default . * . id ) } "
7
7
}
8
8
9
9
output "port" {
You can’t perform that action at this time.
0 commit comments