From 0723e153d97f8a917c592e57c0e7dfc4606c35fc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 23:44:02 +0000 Subject: [PATCH] chore(deps): update terraform terraform-aws-modules/security-group/aws to v5 --- modules/nessus-scanner/security_groups.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nessus-scanner/security_groups.tf b/modules/nessus-scanner/security_groups.tf index 0b61d0c..dfa7d08 100644 --- a/modules/nessus-scanner/security_groups.tf +++ b/modules/nessus-scanner/security_groups.tf @@ -1,6 +1,6 @@ module "byol_security_group" { source = "terraform-aws-modules/security-group/aws" - version = "4.7.0" + version = "5.3.0" count = var.license_type == "byol" ? 1 : 0 name = format("%s %s", coalesce(var.nessus_scanner_name, var.name), local.license_type[var.license_type]) @@ -23,7 +23,7 @@ module "byol_security_group" { module "preauth_security_group" { source = "terraform-aws-modules/security-group/aws" - version = "4.7.0" + version = "5.3.0" count = var.license_type == "preauth" ? 1 : 0 name = format("%s %s", coalesce(var.nessus_scanner_name, var.name), local.license_type[var.license_type]) @@ -35,7 +35,7 @@ module "preauth_security_group" { module "preauth_target_security_group" { source = "terraform-aws-modules/security-group/aws" - version = "4.7.0" + version = "5.3.0" count = var.license_type == "preauth" ? 1 : 0 name = format("%s Target Security Group", coalesce(var.nessus_scanner_name, var.name))