variable "aws_region" {
  description = "AWS region."
  type        = string
  default     = "us-east-1"
}

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

variable "service_name" {
  description = "The name of the service."
  type        = string
  default     = "cdn-deploy"
}

variable "application_family" {
  description = "The application family"
  type        = string
  default     = "devops"
}

variable "team_name" {
  description = "The team that owns this infrastructure."
  type        = string
  default     = "devops"
}
