Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
CloudFormation guard rules template for SQS resources
The following rules are included:
let sqs_queues = Resources.*[
Type == "AWS::SQS::Queue"
]
rule sqs_encryption when %sqs_queues !empty {
%sqs_queues {
Properties {
KmsMasterKeyId exists <<Encryption is disabled.>>
}
}
}