Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

## Provision and distribute the stacksets to the appropriate accounts for aws config rules.
module "config_rule_groups" {

Check failure on line 3 in config.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
for_each = var.config.rule_groups
source = "appvia/stackset/aws"
version = "0.2.7"
version = "0.2.9"

name = format("%s%s", var.config.stackset_name_prefix, lower(each.key))
description = format("Used to configure and distribute the AWS Config rules for %s", each.key)
Expand Down
2 changes: 1 addition & 1 deletion macie.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
}

## Provision the stackset to enable the macie service across all the accounts
module "macie" {

Check failure on line 8 in macie.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.macie_enabled ? 1 : 0
source = "appvia/stackset/aws"
version = "0.2.7"
version = "0.2.9"

name = try(var.macie.stackset_name, "lz-macie-configuration")
description = "Configuration for the AWS macie service, configured by the landing zone"
Expand Down
Loading