I Tried Integrating AWS IAM Access Analyzer in A CI/CD pipeline

2023.01.16

この記事は公開されてから1年以上経過しています。情報が古い可能性がありますので、ご注意ください。

Hello,

In a recent project, I was tasked with deploying an IAM policy through CloudFormation. As IAM policies have the potential to grant permissions to other accounts, they can pose a significant threat to our own account. To mitigate this risk, I researched ways to proactively check IAM policies before they are deployed. This led me to discover the IAM Access Analyzer API, which can be integrated into a CI/CD pipeline to catch potential security issues before they become a problem.

 

IAM Policy Validator for AWS CloudFormation

The IAM Policy Validator for AWS CloudFormation (cfn-policy-validator) is a command-line tool that parses resource-based and identity-based IAM policies from CloudFormation templates and executes the IAM Access Analyzer API. This tool is designed to run in CI/CD pipelines deploying CloudFormation templates and prevent deployments when certain IAM Access Analyzer findings are detected. This ensures that the IAM policies of the CloudFormation template pass validation before deployment.

I Tried

  • Create an AWS CodeCommit repository to store your CloudFormation template.
    1. open code commit in management console
    2. Click create repository
    3. fill the repository name and discription of why we are creating this repository
    4. Click create

we can use any IDE for this time i am using Cloud9 as it  write, run, and debug your code with just a browser

  • Connecting CodeCommit with Cloud9

    1. Set the initial default branch to main
      1. git config --global init.defaultBranch main
    2. now use git clone to copy all the files and history from the repository. we can get the https link from codecommit as shown in the picture
      1. git clone https://git-codecommit.your .amazonaws.com/v1/repos/xxxxxxxxxxxx
    3. lest push some code to codecommit
      1. create a file with text
      2. echo "trying Access analyzer" > readme.md
      3. adding the file in the repository
      4. git add .
      5. commit all the staged changes to the repository
      6. git commit -m "initial commit"
      7. pushing this repository to codecommit
      8. git push
    4. validate the changes in code commit
  • Create one CodeBuild projects, cfn-policy-validator. The projects should have the necessary permissions to access the CodeCommit repository.
    1. Select Create build project.
    2. In the Create a build project page, provide a name for the project, and select the repository provider as AWS CodeCommit.
    3. Select the CodeCommit repository that contains your CloudFormation template.
    4. In the Environment section, choose the runtime environment for your project. You'll need to install cfn-lint and cfn-policy-validator as part of your buildspec.yml file
version: 0.2
phases:
install: 
commands:
- pip3 install cfn-lint
build:
commands:
- cfn-lint template.json
    • In the Service role section, choose Use an existing service role, and select the IAM role that you created for the CodeBuild projects. This role should have permissions to access the CodeCommit repository and the S3 bucket
    • In the Artifacts section, choose No artifacts.
    • In the Logs section, choose a log group
    • Click on Create build project
  • Create an IAM role for the pipeline that has permissions to access the CodeCommit repository and the CodeBuild projects.

 

  • Create an IAM role for deploying the CloudFormation template that has the necessary permissions.
  • Create a CodePipeline and configure it to use the CodeCommit repository as the source, the two CodeBuild projects as the build stage, and CloudFormation as the deploy stage.
  • In the CodePipeline configuration, specify the branch [main] to be used, the path of the template and configuration files, and the name of the CloudFormation stack to be deployed.

 

  • Add the IAM role created in step 5 as the pipeline role and the IAM role created in step 6 as the CloudFormation role.
  • Test the pipeline by making changes to the CloudFormation template in the CodeCommit repository and observing the pipeline stages

 

  • Open the code build to see the finding.

  • We can then fix our template This allows us to confidently and securely deploy our CloudFormation templates.

Summary:

The workshop was a bit complex and required some troubleshooting, but it was worth the effort as it will save time in the future by automatically checking IAM policies before deploying new CloudFormation templates. I plan to write a blog post about this informative workshop, and in the meantime, I'll continue to explore the innovative capabilities of AWS.

Reference

https://aws.amazon.com/jp/blogs/security/validate-iam-policies-in-cloudformation-templates-using-iam-access-analyzer/