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

variable "environment" {
  type        = string
  description = "Deployment environment"
  default     = "prod"
}

variable "application_family" {
  type        = string
  description = "Application family"
  default     = "d2c"
}

variable "team_name" {
  type        = string
  description = "Owning team name"
  default     = "d2c"
}
