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

# non sensitive env variables
variable SENTRY_DSN {}

variable LOGGER_DSN {}

variable DB_URL {
  description = "Fully qualified database connection url for sqlachemy mysql://username:password@host:port/database"
  default     = "sqlite://"
}
