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

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

variable "service_name" {
  description = "The name of the associated application."
  default     = "splitio-ff-manager"
}

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

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

variable "datadog_key_secret_names" {
  description = "List of datadog secrets to be created in secret manager."
  type        = list(string)
  default = [
    "DD_API_KEY",
    "DD_APP_KEY",
  ]
}
