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

variable "application_family" {
  default = "podcast"
}

variable lambda_name {
  default = "lambda-podcast-notifications"
}

variable lambda_transcribe_name {
  default = "lambda-podcast-transcribe"
}

variable lambda_chartable_name {
  default = "lambda-podcast-chartable"
}

variable "cloudwatch_event_rule_pattern_file" {
  default     = "cloudwatch-event-rule-pattern.json"
  description = "JSON file representing the cloudwatch event rule"
}
