Skip to content

Commit f3f920c

Browse files
committed
add disaster recovery tags
1 parent 00a7898 commit f3f920c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

custom.tf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,19 @@ variable "service_component" {
3939
}
4040
}
4141

42+
variable "backup_for_disaster_recovery" {
43+
type = bool
44+
default = false
45+
description = "If we need to keep backup of this instance's ami in other region"
46+
}
47+
48+
variable "backup_frequency_days" {
49+
type = number
50+
default = 7
51+
description = "The number of days after which the backup should be taken of the ami"
52+
}
53+
54+
4255
variable "owner_team" {
4356
type = string
4457
description = "Owner of this ec2. eg: platform, supply, demand, ds, etc"

0 commit comments

Comments
 (0)