-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
38 lines (31 loc) · 814 Bytes
/
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
variable "name" {
type = string
}
variable "environment" {
type = string
}
variable "region" {
type = string
}
variable "timeout" {
type = number
default = 60
}
variable "backup_tag" {
type = string
default = "Backup"
description = "The EC2 Instance Tag that will be checked for the 'yes' value, to backup."
}
variable "backup_retention" {
type = number
default = 30
description = "The number of days a backup will be kept."
}
variable "schedule_expression" {
description = "Scheduling expression for triggering the Lambda Function using CloudWatch events. For example, cron(0 20 * * ? *) or rate(5 minutes)."
}
variable "default_tags" {
description = "Optional default tags to be applied to all resources"
type = map(string)
default = {}
}