From b00e9e857b332f3d89110379f8f1bd91117ee14e Mon Sep 17 00:00:00 2001 From: neil-sproston Date: Thu, 27 Jun 2024 23:08:27 +0100 Subject: [PATCH] Correct variable types --- modules/backup/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/backup/variables.tf b/modules/backup/variables.tf index 9d89065..f3a759f 100644 --- a/modules/backup/variables.tf +++ b/modules/backup/variables.tf @@ -17,12 +17,12 @@ variable "remote_vault_arn" { variable "local_lifecycle" { description = "The lifecycle used for local backup snaphots, in days" - type = string + type = number } variable "remote_lifecycle" { description = "The lifecycle used for remote backup snaphots, in days" - type = string + type = number } variable "backup_schedule" { @@ -32,7 +32,7 @@ variable "backup_schedule" { } variable "use_env" { - description = "" + description = "Whether to back up by Environment or ALL in account" type = bool default = false }