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

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

variable service_name {
  description = "Name of the service"
  default     = "neo4j-cypher"
}

variable "application_family" {
  default = "data-platform"
}

variable neo4j_source_folder_name {
  description = "The name of the source folder containing the queries to run. Should match the name of the folder in https://github.com/theorchard/python-neo4j-cypher-scheduler/tree/master/queries"
  default     = "assert-data-quality"
}
