We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ce04f commit 26751c2Copy full SHA for 26751c2
outputs.tf
@@ -93,3 +93,8 @@ output "reserved_instance" {
93
value = aws_rds_reserved_instance.default
94
description = "All information about the reserved instance(s) if created."
95
}
96
+
97
+output "aws_rds_cluster" {
98
+ value = local.is_regional_cluster ? join("", aws_rds_cluster.primary[*]) : join("", aws_rds_cluster.secondary[*])
99
+ description = "Escape hatch for all aws_rds_cluster outputs"
100
+}
0 commit comments