variable "aws_region" {
  description = "All elements of the state machine execution flow have to be placed in the same region."
  default     = "us-east-1"
}

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

variable "service_name" {
  default = "claude-dashboard"
}

variable "application_family" {
  default = "user-platform"
}

variable "dns_zone_name" {
  description = "The Route53 DNS zone name to create records in."
  default     = "dev.theorchard.io"
}

variable "team" {
  description = "Datadog team slug"
  default     = "accounts-platform"
}
