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

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

variable "application_family" {
  default = "fansifter"
}

variable "service_name" {
  description = "Used to deploy Streamlits into FANSIFTER_APP_REPORTING database"
  default     = "fansifter-app-reporting-streamlits"
}

variable "delphi_snowflake_streamlit_deployment_user_secrets_manager" {
  description = "Secrets manager secrets for Delphi Snowflake account to deploy Streamlits"
  type        = list(string)
  default = [
    "PRIVATE_KEY",
    "PRIVATE_KEY_PASSPHRASE",
  ]
}
