variable "aws_region" {
  default     = "us-east-1"
  description = "All elements of the state machine execution flow have to be placed in the same region."
}

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

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

variable "lambda_name" {
  default = "lambda-smart-downloader"
}

locals {
  existing_swf_policy_names = [
    "S3-${var.environment}-cucumbers-RW",
  ]
}
