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

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

variable "service_name" {
  default = "swf-physical-reporting"
}

variable "flow_name" {
  default = "physical_reporting"
}

variable "swf_domain" {
  default = "qa_swf_feed_ingestion"
}

variable "feed_ingestion_table" {
  default = "qa_feed_ingestion_status"
}

variable "feed_ingestion_data_bucket" {
  default = "qa-cucumbers"
}

variable "feed_ingestion_drop_bucket" {
  default = "prod-orcd-ftp"
}

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

variable "snowflake_database" {
  default = "PHYSICAL_REPORTING"
}

variable "snowflake_schema" {
  default = "QA"
}

variable "snowflake_warehouse" {
  default = "QA_ETL_WAREHOUSE"
}

variable "snowflake_role" {
  default = "QA_SWF_PHYSICAL_REPORTING_ETL"
}

variable "snowflake_user" {
  default = "QA_SWF_PHYSICAL_REPORTING_ETL"
}

variable "application_family" {
  default = "data-platform"
}

variable "team_name" {
  default = "data-platform"
}

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

locals {
  existing_swf_policy_names = [
    "SWF-fullaccess",
    "Dynamo-${var.environment}_feed_ingestion_status-RW",
    "S3-${var.environment}-cucumbers-RW",
    "SNS-${var.environment}-swf-feed-ingestion-Publish",
    "S3-prod-orcd-ftp-RO"
  ]
}
