# General settings
variable "environment" {
  type        = string
  description = "Available values: dev, qa, prod."
  default     = "prod"
}

variable "service_name" {
  type        = string
  description = "Name of service"
  default     = "accounting-great-plains"
}

# Backup settings
variable "backup_start_window_minutes" {
  type        = number
  description = "Specifies the number of minutes before beginning a backup"
  default     = 60
}

variable "backup_completion_window_minutes" {
  type        = number
  description = "Specifies the number of minutes the backup window has to complete"
  default     = 720
}
