variable "aws_region" {
  description = "The AWS region to deploy the service"
  default     = "us-east-1"
}

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

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

variable "application_family" {
  description = "The 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     = "dev-refresh"
}
