Skip to content

Commit

Permalink
fix: incorrect output values for default_target_group name and arn (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mixedCase authored Feb 27, 2021
1 parent 646b042 commit e8f3b08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ output "proxy_default_target_group_id" {

output "proxy_default_target_group_arn" {
description = "The Amazon Resource Name (ARN) for the default target group"
value = element(concat(aws_db_proxy_default_target_group.this.*.id, [""]), 0)
value = element(concat(aws_db_proxy_default_target_group.this.*.arn, [""]), 0)
}

output "proxy_default_target_group_name" {
description = "The name of the default target group"
value = element(concat(aws_db_proxy_default_target_group.this.*.id, [""]), 0)
value = element(concat(aws_db_proxy_default_target_group.this.*.name, [""]), 0)
}

# Proxy Target
Expand Down

0 comments on commit e8f3b08

Please sign in to comment.