variable "region" {
  default = "us-east-1"
}

variable "environment" {
  default = "prod"
}

variable "environment_alias" {
  description = "In some legacy resources 'production' is used instead of prod"
  default     = "production"
}

variable "service_name" {
  default = "songwhip-release-tasks"
}

variable "application_family" {
  default = "songwhip"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets"
  type        = set(string)
  default = [
    "aws_access_key_id",
    "aws_secret_access_key",
  ]
}
