Skip to content

Commit 153fd52

Browse files
Merge pull request #46 from clouddrove/issue-455
added outputs ssm and route-53
2 parents ee7a684 + 28718b4 commit 153fd52

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

_example/memcached/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ output "hostname" {
1919
}
2020

2121
output "redis_ssm_arn" {
22-
value = module.memcached.Memcached_ssm_arn
22+
value = module.memcached.Memcached_ssm_name
2323
description = "A map of the names and ARNs created"
2424
}

_example/redis-cluster/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ output "hostname" {
1919
}
2020

2121
output "redis_ssm_arn" {
22-
value = module.redis-cluster.redis_ssm_arn
22+
value = module.redis-cluster.redis_ssm_name
2323
description = "A map of the names and ARNs created"
2424
}

_example/redis/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ module "redis" {
9393
####----------------------------------------------------------------------------------
9494
route53_record_enabled = true
9595
ssm_parameter_endpoint_enabled = true
96-
dns_record_name = "prodd"
96+
dns_record_name = "prod"
9797
route53_ttl = "300"
9898
route53_type = "CNAME"
99-
route53_zone_id = "Z0176416XCY9LDL0GH04"
99+
route53_zone_id = "Z017xxxxDLxxx0GH04"
100100

101101
}

_example/redis/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ output "hostname" {
2525

2626

2727
output "redis_ssm_arn" {
28-
value = module.redis.redis_ssm_arn
28+
value = module.redis.redis_ssm_name
2929
description = "A map of the names and ARNs created"
3030
}

0 commit comments

Comments
 (0)