variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the fargate environment in"
}

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

variable "service_name" {
  default = "ows-reporting"
}

variable "application_family" {
  default = "accounting"
}

variable "mysql_database" {
  default = "art_relations"
}

variable "mysql_host" {
  default = "ar-db.theorchard.com"
}

variable "mysql_user" {
  default = "ows-reporting"
}

variable "snowflake_account" {
  default = "delphi.us-east-1"
}

variable "team_name" {
  description = "Datadog team name"
  default     = "accounting"
}

variable "snowflake_database" {
  default = "SONY_INTERNAL"
}

variable "snowflake_role" {
  default = "PROD_OWS_REPORTING"
}

variable "snowflake_schema" {
  default = "PROD"
}

variable "snowflake_user" {
  default = "PROD_OWS_REPORTING"
}

variable "snowflake_warehouse" {
  default = "PROD_OWS_WAREHOUSE"
}

variable "notification_endpoints" {
  description = "Notification endpoints for the service."
  type        = string
  default     = ""
}

variable "escalation_notification_endpoints" {
  description = "Escalation notification endpoints for the service."
  type        = string
  default     = ""
}
