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

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

variable "service_name" {
  default = "ows-masters-registry"
}

variable "application_family" {
  default = "sound-recordings"
}

variable "team_name" {
  type    = string
  default = "collections-fingerprinting"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "AR_DB_URL",
    "BULK_STATUSES_DB_URL",
    "SENTRY_DSN"
  ]
}

variable "notification_endpoints" {
  default = "@slack-collections-prod-alarms"
}

variable "vpc_id" {
  type        = string
  description = "VPC ID"
  default     = "vpc-7f0e841a"
}

variable "route53_zone_id" {
  description = "AWS Route 53 zone id"
  default     = "Z2RSKZ9M7TJ9Z"
}