Skip to content

Commit

Permalink
feat: added outputs ssm and route-53
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolnagpal committed Jun 12, 2023
1 parent a79aefa commit 82501f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion _example/memcached/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ output "hostname" {
}

output "redis_ssm_arn" {
value = module.memcached.Memcached_ssm_arn
value = module.memcached.Memcached_ssm_name
description = "A map of the names and ARNs created"
}
2 changes: 1 addition & 1 deletion _example/redis-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ output "hostname" {
}

output "redis_ssm_arn" {
value = module.redis-cluster.redis_ssm_arn
value = module.redis-cluster.redis_ssm_name
description = "A map of the names and ARNs created"
}
2 changes: 1 addition & 1 deletion _example/redis/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ output "hostname" {


output "redis_ssm_arn" {
value = module.redis.redis_ssm_arn
value = module.redis.redis_ssm_name
description = "A map of the names and ARNs created"
}
8 changes: 4 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ output "memcached_hostname" {
description = "DNS hostname"
}

output "redis_ssm_arn" {
value = join("", aws_ssm_parameter.secret-endpoint.*.arn)
output "redis_ssm_name" {
value = join("", aws_ssm_parameter.secret-endpoint.*.name)
description = "A list of all of the parameter values"
}

output "Memcached_ssm_arn" {
value = join("", aws_ssm_parameter.memcached_secret-endpoint.*.arn)
output "Memcached_ssm_name" {
value = join("", aws_ssm_parameter.memcached_secret-endpoint.*.name)
description = "A list of all of the parameter values"
}

0 comments on commit 82501f2

Please sign in to comment.