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

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

variable "service_name" {
  default = "swf-yt-conflict-elasticsearch"
}

variable "opensearch_use_ssl" {
  default = 1
}

variable "opensearch_host" {
  default = "vpc-prod-conflict-manager-os-cfab4balbagmmbrttzppa2jzcy.us-east-1.es.amazonaws.com"
}

variable "opensearch_index" {
  default = "conflict.v01"
}

variable "opensearch_alias" {
  default = "conflict_write"
}

variable "swf_domain" {
  default = "prod_yt_conflict_elasticsearch"
}

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

variable "logger_dsn" {
  default = "https://prod-fluentd-applications.theorchard.io:8888/application"
}

variable "feed_ingestion_table" {
  default = "prod_feed_ingestion_status"
}

variable "snowflake_database" {
  default = "FACTS"
}

variable "snowflake_schema" {
  default = "PROD"
}

variable "snowflake_warehouse" {
  default = "PROD_ETL_WAREHOUSE"
}

variable "s3_bucket" {
  default = "prod-orcdbucket"
}

variable "snowflake_role" {
  default = "PROD_YOUTUBE_ASSET_CONFLICT_ES_ETL"
}

variable "snowflake_user" {
  default = "PROD_YOUTUBE_ASSET_CONFLICT_ES_ETL"
}

variable "iam_policy_arn" {
  description = "IAM Policy to be attached to role"
  type        = list(string)
  default = [
    "arn:aws:iam::437795906767:policy/SWF-fullaccess",
    "arn:aws:iam::437795906767:policy/Dynamo-prod_feed_ingestion_status-RW",
    "arn:aws:iam::437795906767:policy/S3-prod-orcdbucket-yt_conflict_es_etl-RW",
    "arn:aws:iam::437795906767:policy/Dynamo-prod-swf-yt-conflict-elasticsearch-owsrequest",
    "arn:aws:iam::437795906767:policy/Elasticsearch-prod-conflict-manager-os-RW-policy",
    "arn:aws:iam::437795906767:policy/secretsmanager-prod-python-orchard-features-SPLITIO_API_KEY-ro",
    "arn:aws:iam::437795906767:policy/SecretsManager-prod-split-policy"
  ]
}

variable "open_search_rw_policy" {
  default = "Elasticsearch-prod-conflict-manager-os-RW-policy"
}

variable "efs_volume_container_path" {
  description = "Path inside container to mount EFS volume"
  default     = "/var/app/tmp/elasticsearch_export"
}

variable "application_family" {
  default = "sound-recordings"
}

variable "notification_endpoints" {
  default = "@slack-collections-prod-alarms"
}

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

variable "queue_size" {
  default = "4"
}

variable "thread_count" {
  default = "4"
}

variable "team_name" {
  description = "Team name to be used for tagging"
  default     = "collections-fingerprinting"
}
