variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

variable "application_family" {
  default = "songwhip"
}

variable "cloudflare_zone" {
  default = "songwhip.com"
}

variable "verified_email_identities" {
  type = set(string)
  default = [
    "contact@songwhip.com",
    "deepak@songwhip.com",
    "help@songwhip.com",
    "wilson@songwhip.com",
    "qa-contact@songwhip.com",
  ]
}

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

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