variable "region" {
  description = "The AWS resources region"
  default     = "us-east-1"
}

variable "environment" {
  description = "Available values: dev, qa, prod."
  default     = "prod"
}

variable "service_name" {
  description = "The name of the associated application."
  default     = "ddex-ingester"
}

variable "application_family" {
  default = "content-management"
}

variable "swb_vpc_subnet_ids" {
  type        = list(string)
  description = "Switchboard VPC subnets"
  default     = ["subnet-077c51b9579e4db4c", "subnet-0859bb63ff502c51f"]
}

variable "rds_ingress_cidr_blocks" {
  description = "CIDR blocks from which to allow traffic for the RDS DB"
  default = [
    "192.168.32.0/24",
    "192.168.33.0/24",
    "192.168.40.0/22",
    "10.30.0.0/22",
    "10.40.0.0/22",
    "10.10.40.0/22",
    "10.141.0.0/29",
    "10.100.2.0/23",
    "10.100.12.0/23",
  ]
}
