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

variable "environment" {
  description = "The environment for which the resources are being provisioned (e.g. prod, staging, dev)"
  default     = "prod"
}

variable "application_family" {
  description = "The application family for which the resources are being provisioned (e.g. iam, vpc, eks)"
  default     = "dx"
}

variable "team_name" {
  description = "The team name for the iam group"
  default     = "dx"
}
