-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
variables.tf
40 lines (33 loc) · 1.26 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
variable "region" {
type = string
description = "AWS Region"
}
variable "availability_zones" {
type = list(string)
description = "List of Availability Zones"
}
variable "not_resources" {
type = list(string)
description = "An array of strings that either contain Amazon Resource Names (ARNs) or match patterns of resources to exclude from a backup plan"
default = []
}
variable "schedule" {
type = string
description = "A CRON expression specifying when AWS Backup initiates a backup job"
}
variable "start_window" {
type = number
description = "The amount of time in minutes before beginning a backup. Minimum value is 60 minutes"
}
variable "completion_window" {
type = number
description = "The amount of time AWS Backup attempts a backup before canceling the job and returning an error. Must be at least 60 minutes greater than `start_window`"
}
variable "cold_storage_after" {
type = number
description = "Specifies the number of days after creation that a recovery point is moved to cold storage"
}
variable "delete_after" {
type = number
description = "Specifies the number of days after creation that a recovery point is deleted. Must be 90 days greater than `cold_storage_after`"
}