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

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

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

variable "application_family" {
  default = "content-management"
}

variable "swb_role_arn" {
  type        = string
  description = "Switchboard role arn"
  default     = "arn:aws:iam::019963779799:role/ProdOrchardAccess"
}

data "aws_lambda_function" "lambda_sme_analytics_ingest_flow_control" {
  function_name = "ddex-ingester-sme-analytics-ingestion-flow-control-prod"
}
