From caecce922703e27f562e617151cfa94de3892d0d Mon Sep 17 00:00:00 2001 From: Florin Andrei <901867+FlorinAndrei@users.noreply.github.com> Date: Fri, 24 Oct 2025 12:46:38 -0700 Subject: [PATCH] add cluster tags to module output --- outputs.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/outputs.tf b/outputs.tf index 4dc9477..79529fa 100644 --- a/outputs.tf +++ b/outputs.tf @@ -89,6 +89,16 @@ output "cluster_ca_certificate_valid_till" { value = try(aws_rds_cluster.this[0].ca_certificate_valid_till, null) } +output "cluster_tags" { + description = "The map of tags assigned to the cluster" + value = try(aws_rds_cluster.this[0].tags, null) +} + +output "cluster_tags_all" { + description = "The map of tags assigned to the cluster" + value = try(aws_rds_cluster.this[0].tags_all, null) +} + ################################################################################ # Cluster Instance(s) ################################################################################