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 c77ef4e commit ea02287Copy full SHA for ea02287
main.tf
@@ -129,9 +129,12 @@ resource "aws_iam_role_policy_attachment" "custom_policy" {
129
resource "aws_iam_role_policy" "aws_policy" {
130
name = "${var.name}-aws-access"
131
role = aws_iam_role.awsserviceroleforimagebuilder.id
132
+ #checkov:skip=CKV_AWS_290:The policy must allow *
133
+ #checkov:skip=CKV_AWS_355:The policy must allow *
134
policy = data.aws_iam_policy_document.aws_policy.json
135
}
136
137
+#tfsec:ignore:aws-iam-no-policy-wildcards
138
data "aws_iam_policy_document" "aws_policy" {
139
140
statement {
0 commit comments