Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit b00e9e8

Browse files
committed
Correct variable types
1 parent 9c8eb32 commit b00e9e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/backup/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ variable "remote_vault_arn" {
1717

1818
variable "local_lifecycle" {
1919
description = "The lifecycle used for local backup snaphots, in days"
20-
type = string
20+
type = number
2121
}
2222

2323
variable "remote_lifecycle" {
2424
description = "The lifecycle used for remote backup snaphots, in days"
25-
type = string
25+
type = number
2626
}
2727

2828
variable "backup_schedule" {
@@ -32,7 +32,7 @@ variable "backup_schedule" {
3232
}
3333

3434
variable "use_env" {
35-
description = ""
35+
description = "Whether to back up by Environment or ALL in account"
3636
type = bool
3737
default = false
3838
}

0 commit comments

Comments
 (0)