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

variable "environment" {
  default = "qa"
}

variable "service_name" {
  default = "graphql-sr-delivery"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "sound_recordings"
}

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