Skip to content

Commit

Permalink
fix: #433 Add missing tags to EIGW
Browse files Browse the repository at this point in the history
  • Loading branch information
gillg committed Apr 19, 2020
1 parent 23b0a02 commit 3326953
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ resource "aws_egress_only_internet_gateway" "this" {
count = var.create_vpc && var.enable_ipv6 && local.max_subnet_length > 0 ? 1 : 0

vpc_id = local.vpc_id
tags = merge(
{
"Name" = format("%s", var.name)
},
var.tags,
var.igw_tags,
)
}

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

0 comments on commit 3326953

Please sign in to comment.