Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
Adds ability to provide custom ALB tags
  • Loading branch information
RafPe authored Jul 1, 2024
1 parent f120124 commit 83203c9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ module "alb" {
associate_web_acl = try(var.alb.associate_web_acl, false)
web_acl_arn = try(var.alb.web_acl_arn, null)

tags = var.tags
tags = merge(
try(var.alb.tags, null),
var.tags
)
}

################################################################################
Expand Down

0 comments on commit 83203c9

Please sign in to comment.