Skip to content

maskerade/cfn-guard-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action to run AWS Cloudformation Guard

This Action for CloudFormation Guard verifies that cloudfomation templates meet a built-in pre-defined set of rules.

Inputs

cfn_subdirectory

Required The directory where cloudformation templates are stored. Default "cdk.out".

Outputs

None

Example usage

name: Check CloudFormation Templates with CFN Guard

on: [push]

jobs:

  check-cfn-templates:

    runs-on: ubuntu-latest
    steps:
    - name: Checkout
      uses: actions/checkout@v2

    - name: Cloudformation Guard Checks
      uses: maskerade/cfn-guard-action@master
      with: 
        cfn_subdirectory: 'cdk.out'