Add backup policy to be set as daily or weekly
Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
This commit is contained in:
parent
2c061156e7
commit
1df1f4595a
@ -1,5 +1,10 @@
|
||||
resource "digitalocean_droplet" "this" {
|
||||
backups = "true"
|
||||
backup_policy {
|
||||
plan = var.backup_policy_plan
|
||||
weekday = var.backup_policy_weekday
|
||||
hour = var.backup_policy_hour
|
||||
}
|
||||
image = var.image_name
|
||||
ipv6 = "true"
|
||||
lifecycle {
|
||||
|
5
variable.backup_policy_hour.tf
Normal file
5
variable.backup_policy_hour.tf
Normal file
@ -0,0 +1,5 @@
|
||||
variable "backup_policy_hour" {
|
||||
# UTC Hour : 0, 4, 8, 12, 16, 20
|
||||
default = "0"
|
||||
type = string
|
||||
}
|
5
variable.backup_policy_plan.tf
Normal file
5
variable.backup_policy_plan.tf
Normal file
@ -0,0 +1,5 @@
|
||||
variable "backup_policy_plan" {
|
||||
# daily or weekly
|
||||
default = "weekly"
|
||||
type = string
|
||||
}
|
5
variable.backup_policy_weekday.tf
Normal file
5
variable.backup_policy_weekday.tf
Normal file
@ -0,0 +1,5 @@
|
||||
variable "backup_policy_weekday" {
|
||||
# SUN, MON, TUE, WED, THU, FRI, SAT
|
||||
default = "SUN"
|
||||
type = string
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user