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     = "backup"
}

variable "application_family" {
  description = "Name of application family"
  default     = "security-tools"
}

variable "service_name" {
  description = "Service Name"
  default     = "splitio-ff-backup"
}

variable "secret_name" {
  description = "Secret manager secret name"
  default     = "SPLITIO_ADMIN_API_KEY"
}

variable "SPLITIO_WORKSPACE_ID" {
  default = "5b5212f0-21c9-11ea-a4e7-0a9b522eabbd"
}

variable "LOGGER_LEVEL" {
  default = "INFO"
}

variable "notification_endpoints" {
  description = "DataDog notification endpoints for Fargate service."
  type        = string
  default     = "@slack-monitoring @slack-security-team @slack-devops-internal-alerts"
}
