From 8d275b76b3becfceb761163b4ad22e6857c30395 Mon Sep 17 00:00:00 2001 From: ashle001 Date: Mon, 26 Oct 2020 09:17:09 -0400 Subject: [PATCH] convert force_destry to boolean --- variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/variables.tf b/variables.tf index 0e42780..7514849 100644 --- a/variables.tf +++ b/variables.tf @@ -46,7 +46,7 @@ variable "allowed_endpoints" { } variable "force_destroy" { - description = "Protect or delete bucket" - type = string - default = "false" + description = "Sets both force_destroy and lifecycle prevent_destroy accordingly to allow the bucket and contents to be deleted. The deletion may take a very long time""Protect or delete bucket" + type = bool + default = false }