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

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

variable "application_family" {
  description = "Internal organizational grouping."
  default     = "integrations"
}

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

variable "team" {
  description = "Datadog team slug"
  default     = "integrations"
}

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

variable "bulk_assets_ingester_prefix" {
  description = "S3 bucket folder prefix for Bulk Assets Ingester"
  default     = "bulk-assets"
}

variable "bulk_assets_ingester_input_bucket" {
  description = "S3 bucket for Bulk Assets Ingester data (minus prefix)"
  default     = "bulk-assets-ingester"
}

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

variable "lambda_concurrent_executions_low" {
  description = "Number of reserved concurrent executions for low impact lambda functions"
  default     = 10
}

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

variable "bulk_assets_ingester_cloudwatch_event_rule_pattern_file" {
  description = "JSON file representing the cloudwatch S3 event rule"
  default     = "sfn-bulk-assets-ingester-cloudwatch-event-rule.json"
}

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

variable "sfn_bulk_assets_ingester_definition_file" {
  description = "Bulk Assets ingester SFN definition"
  default     = "sfn-bulk-assets-ingester.json"
}

variable "oa_user" {
  description = "OA user ID for graphql authentication"
  default     = "oa:179"
}

variable "graphql_gateway_url" {
  description = "GraphQl gateway URL"
  default     = "https://qa-graphql-gateway.theorchard.io/graphql"
}

variable "raw_asset_bucket" {
  description = "Raw Asset bucket"
  default     = "qa-orcd-raw-assets"
}

variable "sentinel_file" {
  description = "Filename pattern to trigger sfn"
  default     = "*.json"
}

variable "snowflake_s3_bucket" {
  description = "Location of S3 bucket for Snowpipe ingestion to shared catalog_ingestion_* tables"
  default     = "qa-ddex-ingester"
}

variable "snowflake_s3_location" {
  description = "Folder within S3 bucket for Snowpipe ingestion to shared catalog_ingestion_* tables"
  default     = "snowflake"
}

variable "catalog_ingestion_id" {
  description = "Catalog Ingestion type ID for display in INTEGRATION.<ENV>.CATALOG_INGESTION table."
  default     = 1001
}
