variable "vpc_id" { } variable "stack_name" { } variable "region" { } variable "public_subnets" { description = "A list of public subnets inside the VPC." default = [] } variable "private_subnets" { description = "A list of private subnets inside the VPC." default = [] } variable "private_db_subnets" { description = "A list of private subnets inside the VPC for the RDS Postgres" default = [] } variable "azs" { description = "A list of Availability zones in the region" default = ["a","b","c"] } variable "enable_nat_gateway" { description = "should be true if you want to provision NAT Gateways for each of your private networks" default = false } variable "private_propagating_vgws" { description = "A list of VGWs the private route table should propagate." default = [] } variable "public_propagating_vgws" { description = "A list of VGWs the public route table should propagate." default = [] } variable "ssl_certificate_id" { description = "SSL Certificate ID on AWS for nuxeocloud.com" default = "ASCAI627UM4G2NSLWDTMM" } data "aws_availability_zones" "available" {}