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 592cb15 commit 4ffdfd9Copy full SHA for 4ffdfd9
main.tf
@@ -337,7 +337,7 @@ resource "aws_security_group" "this" {
337
vpc_id = var.vpc_id
338
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${var.name}")
339
340
- 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)
341
342
lifecycle {
343
create_before_destroy = true
0 commit comments