A new mode to deploy without running automatic backups so that I can test restoration without writing a blank backup.
12 lines
354 B
HCL
12 lines
354 B
HCL
variable "restoration_mode" {
|
|
type = bool
|
|
description = "Prevent starting scheduled backup jobs so data can be restored without overwriting good data"
|
|
default = false
|
|
}
|
|
|
|
variable "use_wesher" {
|
|
type = bool
|
|
description = "Indicates whether or not services should expose themselves on the wesher network"
|
|
default = true
|
|
}
|