mirror of
https://github.com/terraform-aws-modules/terraform-aws-rds-proxy.git
synced 2025-12-17 08:21:12 +00:00
Fix incorrect output values
This commit is contained in:
parent
646b0428d4
commit
3345da63ea
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" {
|
output "proxy_default_target_group_arn" {
|
||||||
description = "The Amazon Resource Name (ARN) for the default target group"
|
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" {
|
output "proxy_default_target_group_name" {
|
||||||
description = "The name of the default target group"
|
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
|
# Proxy Target
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue