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 "service_name" {
  default = "ows-timed-release"
}

variable "LOGGER_HANDLER_ASYNC" {
}

variable "RDS_MYSQL_PORT" {
  description = "Most MySQL connections will be to this port, but it's nice to give the option to override"
  default     = "3306"
}

