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

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

variable "service_name" {
  description = "The name of the associated application."
  default     = "grps-ingester"
}

variable "name" {
  description = "The name of lambda."
  default     = "get-grps-data"
}

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

variable "lambda_default_timeout" {
  description = "Default value for timeout"
  default     = "900"
}

variable "datadog_enabled" {
  description = "Whether or not to attach datadog secretsmanager IAM policy"
  default     = true
}

variable "logger_dsn" {
  description = "Fluentd logger DSN"
  default     = "udp://qa-fluentd-applications-udp.theorchard.io:5160"
}

variable "lambda_concurrent_executions" {
  description = "Number of reserved concurrent executions for lambda function"
  default     = 10
}


variable "snowflake_user" {
  default = "QA_SFN_GRPS_INGESTER"
}

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

variable "snowflake_schema" {
  default = "GRPS_DRAS002"
}

variable "snowflake_database" {
  default = "GRPS_APP_REPORTING_NOCONF"
}

variable "snowflake_warehouse" {
  default = "QA_ETL_WAREHOUSE"
}

variable "snowflake_role" {
  default = "QA_SFN_GRPS_INGESTER_ROLE"
}
