21 lines
740 B
Terraform
21 lines
740 B
Terraform
|
module "vpc-subnet" {
|
||
|
source = "../../modules/networking/vpc_subnets"
|
||
|
|
||
|
application = var.application
|
||
|
aws-region = var.aws-region
|
||
|
customer-name = var.customer-name
|
||
|
default-tags = local.default-tags
|
||
|
environment = var.environment
|
||
|
project = var.project
|
||
|
vpc-cidr = "172.28.0.0/16"
|
||
|
vpcflowlog-cwl-loggroup-key-arn = ""
|
||
|
enable-flow-log = false
|
||
|
number-of-private-subnets-per-az = 0
|
||
|
number-of-public-subnets-per-az = 1
|
||
|
create-nat-gateway = false
|
||
|
}
|
||
|
|
||
|
module delete-default-vpcs {
|
||
|
source = "../../modules/networking/delete-default-vpcs"
|
||
|
|
||
|
}
|