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

variable "environment" {
  default = "prod"
}

variable "application_family" {
  default = "songwhip"
}

variable "service_name" {
  default = "songwhip-images"
}

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