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

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

variable "service_name" {
  type    = string
  default = "gtm-songwhip"
}

variable "application_family" {
  type    = string
  default = "devops"
}

variable "secrets_manager_secret_names" {
  type = list(string)
  default = [
    "CONTAINER_CONFIG"
  ]
}

variable "domain_name" {
  type    = string
  default = "theorchard.io"
}

variable "cloudflare_account_id" {
  default = "229e27eb2e8337e21e3a1e26b1daba51"
}

variable "cloudflare_zones" {
  type = list(string)
  default = [
    "songwhip.com",
    "sng.to",
    "orch.stream",
  ]
}

variable "alert_channel" {
  type    = string
  default = "@slack-google-tag-manager-alerts"
}

locals {
  preview_service_name = "${var.service_name}-preview"
}
