
This should have literally everything you need to run a single command and get all infra components live and ready for app deployment.
7 lines
139 B
HCL
7 lines
139 B
HCL
resource "aws_internet_gateway" "app_gateway" {
|
|
vpc_id = aws_vpc.app_vpc.id
|
|
tags = {
|
|
Name = "Clippable app internet gateway"
|
|
}
|
|
}
|