From dcb3db7b64428a82d63457dba4a3135d64e8010e Mon Sep 17 00:00:00 2001 From: Yoan SIMIAND-COSSIN <127422619+ysimiandcossin@users.noreply.github.com> Date: Wed, 4 Dec 2024 15:33:06 +0100 Subject: [PATCH] feat(cc_gwlb_asg): add default tags to global tags --- examples/cc_gwlb_asg/main.tf | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/examples/cc_gwlb_asg/main.tf b/examples/cc_gwlb_asg/main.tf index 0908926..cbda3f3 100755 --- a/examples/cc_gwlb_asg/main.tf +++ b/examples/cc_gwlb_asg/main.tf @@ -8,15 +8,24 @@ resource "random_string" "suffix" { } +################################################################################ +# Retrieve the default tags from provider +################################################################################ +data "aws_default_tags" "current" {} + + ################################################################################ # Map default tags with values to be assigned to all tagged resources ################################################################################ locals { - global_tags = { - Owner = var.owner_tag - ManagedBy = "terraform" - Vendor = "Zscaler" - } + global_tags = merge( + { + Owner = var.owner_tag + ManagedBy = "terraform" + Vendor = "Zscaler" + }, + data.aws_default_tags.current.tags + ) }