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

variable "environment" {
  type        = string
  description = "Environment name"
  default     = "qa"
}

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

variable "team_name" {
  type        = string
  description = "Team name"
  default     = "songwhip"
}

variable "secrets_to_access" {
  type        = list(string)
  description = "List of Secrets Manager secret paths the deploy role can read"
  default = [
    "qa/songwhip-presaves/PRESAVES_DB_ADMIN_PASSWORD",
  ]
}
