terraform.aws-baseline-infra/modules/networking/vpc_subnets/variables.tf

25 lines
582 B
HCL

variable "customer-name" {}
variable "environment" {}
variable "project" {}
variable "application" {}
variable "default-tags" {}
variable "aws-region" {}
variable "aws-region-short" {}
locals {
resource-prefix = "${var.environment}-${var.aws-region-short}-${var.customer-name}-${var.project}"
}
# VPC variables
variable vpc-cidr {}
variable number-of-public-subnets-per-az {}
variable number-of-private-subnets-per-az {}
variable create-nat-gateway {}
variable enable-flow-log {
type = bool
default = true
}
variable vpcflowlog-retain-days {
type = number
default = 90
}