7 lines
144 B
HCL
7 lines
144 B
HCL
resource "aws_internet_gateway" "aws_default_gateway" {
|
|
vpc_id = aws_vpc.aws-default-vpc.id
|
|
|
|
tags = {
|
|
Name = "aws_default_gateway"
|
|
}
|
|
} |