cfn-guard-lambda 3.2.0

Lambda version of cfn-guard. Checks JSON- or YAML- formatted structured data for policy compliance using a simple, policy-as-code, declarative syntax
Documentation
Transform: AWS::Serverless-2016-10-31

Resources:
  CloudFormationGuardLambda:
    Type: AWS::Serverless::Function
    Properties:
      Runtime: provided.al2023
      Handler: guard.handler
      # We need to point to the parent directory, so we can use ../guard/*
      CodeUri: ..
      Environment:
        Variables:
          RUST_BACKTRACE: "1"
      Tracing: Active
    Metadata:
      BuildMethod: makefile

Outputs:
  CloudFormationGuardLambdaFunctionName:
    Value: !Ref CloudFormationGuardLambda