From 4ffdfd90a6ce558dd71aa2f7c0bde45665797554 Mon Sep 17 00:00:00 2001 From: rrsch Date: Wed, 26 Mar 2025 21:50:35 +0530 Subject: [PATCH] #issue 492 rearranged maps in merge in main.tf:340 --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 6a438f73..52e2be27 100644 --- a/main.tf +++ b/main.tf @@ -337,7 +337,7 @@ resource "aws_security_group" "this" { vpc_id = var.vpc_id description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${var.name}") - tags = merge(var.tags, var.security_group_tags, { Name = local.security_group_name }) + tags = merge(var.tags, { Name = local.security_group_name }, var.security_group_tags) lifecycle { create_before_destroy = true