We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a9ffe1 commit 936453dCopy full SHA for 936453d
2 files changed
.checkov.yml
@@ -11,6 +11,9 @@ skip-check:
11
- CKV_AWS_158
12
- CKV_AWS_338
13
14
+ # Pin module sources to a commit hash (false positive)
15
+ - CKV_TF_1
16
+
17
# These ignores are TEMPORARY. They will be resolved in the future.
18
- CKV_AWS_108
19
- CKV_AWS_272
terraform/service/eventbridge.tf
@@ -1,9 +1,6 @@
1
module "eventbridge" {
2
- # source = "terraform-aws-modules/eventbridge/aws"
3
- # version = "4.1.0"
4
-
5
- # Pin to a git commit instead. This is the same as the above.
6
- source = "git::https://github.com/terraform-aws-modules/terraform-aws-eventbridge.git?ref=3e8657cd925d5b4a21301a09b67d8081f24bcfc3"
+ source = "terraform-aws-modules/eventbridge/aws"
+ version = "4.1.0"
7
8
role_name = "${var.lambda_name}-eventbridge-role"
9
0 commit comments