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     = "prod"
}

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

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

variable "vpc_subnet_ids" {
  default     = ["subnet-098b89d0c58c5693a", "subnet-067a6b45b079d7296"]
  description = "VPC subnet IDs where the lambda will execute"
  type        = list(string)
}

variable "vpc_id" {
  default = "vpc-7f0e841a"
}

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