terraform-demo/modules/igw/main.tf

7 lines
100 B
HCL

resource "aws_internet_gateway" "gw" {
vpc_id = var.vpc_id
tags = {
Name = "main-igw"
}
}