variable "application_family" {
  type    = string
  default = "devops"
}

variable "team_name" {
  type    = string
  default = "devops"
}

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

variable "environment" {
  type        = string
  description = "The name of the environment"
  default     = "dev"
}
