Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,8 @@ output "reserved_instance" {
value = aws_rds_reserved_instance.default
description = "All information about the reserved instance(s) if created."
}

output "aws_rds_cluster" {
value = local.is_regional_cluster ? join("", aws_rds_cluster.primary[*]) : join("", aws_rds_cluster.secondary[*])
description = "Escape hatch for all aws_rds_cluster outputs"
}