mirror of
https://github.com/terraform-aws-modules/terraform-aws-rds-proxy.git
synced 2025-12-16 16:01:11 +00:00
fix: incorrect output values for default_target_group name and arn (#3)
This commit is contained in:
parent
646b0428d4
commit
e8f3b082a2
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue