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

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

variable "service_name" {
  default = "lambda-timed-release"
}

variable "application_family" {
  default = "product-builder"
}

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

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

variable "ows_product_workflow_url" {
  default = "https://prod-ows-product-workflow.theorchard.io"
}

variable "orchard_profile_id" {
  default = "179"
}

variable "orchard_profile_type" {
  default = "OrchAdminProfile"
}

variable "orchard_identity_id" {
  default = "8955b4aa-2ad0-4b0b-a2ea-6f070554d6d0"
}
