Skip to content

Commit

Permalink
chore(deps): update terraform terraform-aws-modules/security-group/aw…
Browse files Browse the repository at this point in the history
…s to v5
  • Loading branch information
renovate[bot] authored Feb 29, 2024
1 parent fcabb11 commit c727b74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/nessus-scanner/security_groups.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "byol_security_group" {
source = "terraform-aws-modules/security-group/aws"
version = "4.7.0"
version = "5.1.1"
count = var.license_type == "byol" ? 1 : 0

name = format("%s %s", coalesce(var.nessus_scanner_name, var.name), local.license_type[var.license_type])
Expand All @@ -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.1.1"
count = var.license_type == "preauth" ? 1 : 0

name = format("%s %s", coalesce(var.nessus_scanner_name, var.name), local.license_type[var.license_type])
Expand All @@ -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.1.1"
count = var.license_type == "preauth" ? 1 : 0

name = format("%s Target Security Group", coalesce(var.nessus_scanner_name, var.name))
Expand Down

0 comments on commit c727b74

Please sign in to comment.