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

variable "environment" {
  default = "dev"
}

variable "application_family" {
  default     = "security-tools"
  description = "Application family"
}

variable "service_name" {
  default = "orchard-suite-oa-applications"
}

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