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

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

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-0039792f783ab75fd", "subnet-0dd9a0984ce97daf3"]
}
