8 lines
155 B
Terraform
8 lines
155 B
Terraform
variable "backup_policy_hour" {
|
|
description = "The hour of the day for backups"
|
|
# UTC Hour : 0, 4, 8, 12, 16, 20
|
|
default = "0"
|
|
type = string
|
|
}
|
|
|