
This should have literally everything you need to run a single command and get all infra components live and ready for app deployment.
6 lines
151 B
HCL
6 lines
151 B
HCL
resource "aws_subnet" "app_public_subnet" {
|
|
vpc_id = aws_vpc.app_vpc.id
|
|
cidr_block = "10.0.0.128/26"
|
|
availability_zone = var.availability_zone
|
|
}
|