From 5eaba8129e05abe02d285a827ec8d1306c575c01 Mon Sep 17 00:00:00 2001 From: Dave Arnold Date: Fri, 23 Aug 2024 11:37:46 -0700 Subject: [PATCH] Update vulnerability_alerts default value to false --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 1aaaa5e..ad7de82 100644 --- a/variables.tf +++ b/variables.tf @@ -199,7 +199,7 @@ variable "archive_on_destroy" { default = true } -variable vulnerability_alerts { +variable "vulnerability_alerts" { type = bool - default = true + default = false }