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

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

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

variable "service_name" {
  type    = string
  default = "emr"
}

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