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 26bb020 commit e0299d7Copy full SHA for e0299d7
main.tf
@@ -106,6 +106,14 @@ resource "aws_egress_only_internet_gateway" "this" {
106
count = var.create_vpc && var.enable_ipv6 && local.max_subnet_length > 0 ? 1 : 0
107
108
vpc_id = local.vpc_id
109
+
110
+ tags = merge(
111
+ {
112
+ "Name" = format("%s", var.name)
113
+ },
114
+ var.tags,
115
+ var.igw_tags,
116
+ )
117
}
118
119
################
versions.tf
@@ -2,6 +2,6 @@ terraform {
2
required_version = "~> 0.12.6"
3
4
required_providers {
5
- aws = "~> 2.53"
+ aws = "~> 2.57"
6
7
0 commit comments