
This should have literally everything you need to run a single command and get all infra components live and ready for app deployment.
11 lines
170 B
HCL
11 lines
170 B
HCL
|
|
resource "aws_vpc" "app_vpc" {
|
|
cidr_block = "10.0.0.128/26"
|
|
enable_dns_support = true
|
|
enable_dns_hostnames = true
|
|
|
|
tags = {
|
|
Name = "Clippable APP VPC"
|
|
}
|
|
}
|