12 lines
498 B
Terraform
12 lines
498 B
Terraform
|
module "vpc-subnets" {
|
||
|
source = "../../modules/networking/vpc-subnet-manual"
|
||
|
|
||
|
resource-prefix = local.resource-prefix
|
||
|
private-subnet-cidrs = ["172.17.0.0/24", "172.17.1.0/24"]
|
||
|
public-subnet-cidrs = ["172.17.10.0/24", "172.17.11.0/24"]
|
||
|
vpc-cidr = "172.17.0.0/16"
|
||
|
enable-flow-log = false
|
||
|
vpcflowlog-cwl-loggroup-key-arn = ""
|
||
|
create-nat-gateway = true
|
||
|
create-free-vpc-endpoints = true
|
||
|
}
|