From f04ac0808829d259a6802106debcaec0a0284bed Mon Sep 17 00:00:00 2001 From: yangci Date: Wed, 4 Dec 2024 12:50:42 -0500 Subject: [PATCH] fix: reserved instance output (#240) * fix: reserved instance output syntax * fix: reserved instance output syntax * Update outputs.tf * Update outputs.tf --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 29d018a..22b4381 100644 --- a/outputs.tf +++ b/outputs.tf @@ -85,6 +85,6 @@ output "activity_stream_name" { } output "reserved_instance" { - value = join("", aws_rds_reserved_instance.default[*]) + value = aws_rds_reserved_instance.default description = "All information about the reserved instance(s) if created." }