Marty Sweet
Marty Sweet
The `!Condition` keyword is not support by cfn-lint. It can be used like the following: ``` MyAndCondition: !And - !Equals ["sg-mysggroup", !Ref "ASecurityGroup"] - !Condition SomeOtherCondition ```
The README.md file currently says: > Note: The order of --parameters and --pseudo currently matters. This should be addressed in a later release. @RazzM13 Is this still correct?
Make documentation for the merging and release cycle: - [x] Merging and updating PRs - change log updates, squash merge title with PR number - [x] Name for the PR...
Make a usage GIF similar to https://github.com/serverless/serverless I have always tried to make the README.md as friendly as possible for newcomers. Something like this should make them think, "Wow, it's...
Similar to https://raw.githubusercontent.com/CircleCI-Public/circleci-demo-javascript-express/master/.circleci/config.yml
``` S3LoggingBucket: Type: AWS::S3::Bucket Properties: LifecycleConfiguration: Rules: - Status: Enabled Transitions: StorageClass: GLACIER TransitionInDays: 60 ``` is Invalid as Transitions should be array types (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-lifecycleconfig-rule.html). ``` S3LoggingBucket: Type: AWS::S3::Bucket Properties:...
``` Resource: Resources > LambdaFunction > Properties > Environment > Variables Message: HEALTHCHECK_BUCKET is not a valid property of AWS::Lambda::Function.Map Documentation: http://docs.aws.amazon.com/search/doc-search.html?searchPath=documentation-guide&searchQuery=AWS::Lambda::Function.Map&x=0&y=0&this_doc_product=AWS+CloudFormation&this_doc_guide=User+Guide&doc_locale=en_us#facet_doc_product=AWS%20CloudFormation&facet_doc_guide=User%20Guide Resource: Resources > LambdaFunction > Properties > Environment...
Detect circular dependencies in the template. This is not urgent as it is caught by AWS before deploying a template.
Not currently sure how to do this with the current information. This occurs when validating something like an IAM policy.
Uses SAM policy templates to add the SNS Publish permissions to the Lambda role.