variable "region" {
  default = "us-east-1"
}

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

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

# Required
variable "video_ingestion_workflow_state_machine_name" {
  description = "Name of video_ingestion_workflow state machine."
  default     = "video_ingestion_workflow"
}

variable "video_approval_workflow_state_machine_name" {
  description = "Name of video_approval_workflow state machine."
  default     = "video_approval_workflow"
}

variable "video_ingestion_workflow_state_machine_definition_file" {
  description = "JSON file representing the video_ingestion_workflow state machine"
  default     = "video_ingestion_workflow_state_machine_definition_file.json"
}

variable "video_approval_workflow_state_machine_definition_file" {
  description = "JSON file representing the video_approval_workflow state machine"
  default     = "video_approval_workflow_state_machine_definition_file.json"
}

variable "video_ingestion_workflow_state_machine_execution_arn" {
  description = "ARN for executions of the ingestion workflow state machine"
}

variable "video_approval_workflow_state_machine_execution_arn" {
  description = "ARN for executions of the approval workflow state machine"
}

