Skip to content
Open
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
4 changes: 2 additions & 2 deletions cf_execution_iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@
], var.additional_execution_role)
}

module "cf_execution_role_policy" {

Check failure on line 135 in cf_execution_iam.tf

View workflow job for this annotation

GitHub Actions / ci / Security Checks

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
version = ">= 5.3.0"
version = "~> 5.60.0"

create_policy = true

Expand All @@ -144,9 +144,9 @@
policy = data.aws_iam_policy_document.cf_execution_concat.json
}

module "cf_execution_assume_role" {

Check failure on line 147 in cf_execution_iam.tf

View workflow job for this annotation

GitHub Actions / ci / Security Checks

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = ">= 5.3.0"
version = "~> 5.60.0"

create_role = true

Expand Down
2 changes: 1 addition & 1 deletion deployer_iam.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
data "aws_iam_policy_document" "deployer" {

Check failure on line 1 in deployer_iam.tf

View workflow job for this annotation

GitHub Actions / ci / Security Checks

CKV_AWS_356: "Ensure no IAM policies documents allow "*" as a statement's resource for restrictable actions"
statement {
sid = "DelegateToCF"

Expand Down Expand Up @@ -95,9 +95,9 @@
], var.additional_deployer_role)
}

module "deployer_role_policy" {

Check failure on line 98 in deployer_iam.tf

View workflow job for this annotation

GitHub Actions / ci / Security Checks

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
version = ">= 5.3.0"
version = "~> 5.60.0"

create_policy = true

Expand Down
Loading