variable "aws_region" {
  type        = string
  description = "The AWS region"
  default     = "us-east-1"
}

variable "environment" {
  type        = string
  description = "The environment."
  default     = "prod"
}

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "tableau"
}

variable "application_family" {
  type        = string
  description = "Application family of which this is a component. Used for tagging"
  default     = "business-intelligence"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "SNOWFLAKE_PASSWORD", # Password for the ORCHARD_ANALYTICS_TABLEAU_USER Snowflake service user.
  ]
}
