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

variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

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

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

variable "service_name_suffix" {
  description = "Suffix for the Fargate service name."
  default     = "augment"
}

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