Home Arrow Icon Knowledge base Arrow Icon Global Arrow Icon How do I integrate cfn-lint with my CloudFormation template for SQS queue attributes
    AWS CloudFormation Linter cfn-lint SQS queue attributes CloudFormation template validation CI/CD integration AWS best practices


How do I integrate cfn-lint with my CloudFormation template for SQS queue attributes


To integrate the AWS CloudFormation Linter (cfn-lint) with your CloudFormation template for SQS queue attributes, you can follow these steps:

1. Install cfn-lint:
Ensure you have cfn-lint installed. You can install it using pip:


   pip install cfn-lint
   

2. Create a CloudFormation Template:
Create a CloudFormation template that defines your SQS queue and its attributes. For example:

json
   {
     "AWSTemplateFormatVersion": "2010-09-09",
     "Resources": {
       "MyQueue": {
         "Type": "AWS::SQS::Queue",
         "Properties": {
           "QueueName": "MyQueue",
           "DelaySeconds": 50,
           "MaximumMessageSize": 100,
           "MessageRetentionPeriod": 2600,
           "ReceiveMessageWaitTimeSeconds": 4,
           "VisibilityTimeout": 4,
           "RedrivePolicy": "{\"deadLetterTargetArn\":\"arn:aws:sqs:us-east-1:000000000000:tutorial-dlq-sqs\",\"maxReceiveCount\":\"1\"}"
         }
       }
     }
   }
   

3. Validate the Template with cfn-lint:
Use the `cfn-lint` command to validate your CloudFormation template:


   cfn-lint template.json
   

This will check your template for any errors or best practice violations related to the SQS queue attributes.

4. Customize cfn-lint Configuration (Optional):
If you want to customize the cfn-lint rules or configure specific settings, you can create a `.cfnlintrc` file in your project directory. For example, you can configure the `ReceiveMessageWaitTimeSeconds` attribute to be between 0 and 20 seconds:

yaml
   rules:
     E3012:
       strict: true
       config:
         ReceiveMessageWaitTimeSeconds:
           min_value: 0
           max_value: 20
   

This configuration will ensure that the `ReceiveMessageWaitTimeSeconds` attribute is within the specified range.

5. Integrate cfn-lint into your CI/CD Pipeline:
You can integrate the cfn-lint validation into your continuous integration (CI) or continuous deployment (CD) pipeline to automatically check your CloudFormation templates. Here are some examples of how to do this:
- AWS CodeBuild: Use the `sam validate --lint` command in your CodeBuild project's buildspec.yml file.
- GitHub Actions: Create a GitHub Actions workflow that runs `cfn-lint` on your CloudFormation template.
- GitLab CI/CD: Add a job to your `.gitlab-ci.yml` file that runs `cfn-lint` on your CloudFormation template.

By following these steps, you can integrate the AWS CloudFormation Linter (cfn-lint) into your development workflow to validate your CloudFormation templates, including the SQS queue attributes, and ensure they adhere to AWS best practices.

Citations:
[1] https://github.com/aws-cloudformation/cfn-lint-visual-studio-code
[2] https://aws.amazon.com/blogs/devops/aws-cloudformation-linter-v1/
[3] https://github.com/aws-cloudformation/cfn-lint
[4] https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/validate-cfn-lint.html
[5] https://awslabs.github.io/serverless-rules/cfn-lint/