8 lines
175 B
Terraform
8 lines
175 B
Terraform
variable "backup_policy_weekday" {
|
|
description = "The day of the week for backups (e.g., SUN)"
|
|
# SUN, MON, TUE, WED, THU, FRI, SAT
|
|
default = "SUN"
|
|
type = string
|
|
}
|
|
|