variable "region" {
  default     = "us-east-1"
  description = "aws resources region"
}

variable "service_name" {
  default = "sc-split-synchronizer"
}

variable "environment" {
  default = "qa"
}

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

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

variable "secrets_manager_secret_names" {
  type = list(string)
  default = [
    "SPLIT_SYNC_APIKEY",
    "SPLIT_SYNC_ADMIN_USERNAME",
    "SPLIT_SYNC_ADMIN_PASSWORD"
  ]
}
