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 Auto Scaling resources
The following rules are included:
let autoscaling_launchconfiguration = Resources.*[
Type == "AWS::AutoScaling::LaunchConfiguration"
]
rule autoscaling_launch_configuration_instances_public_ip when %autoscaling_launchconfiguration !empty {
%autoscaling_launchconfiguration {
Properties {
AssociatePublicIpAddress exists <<AssociatePublicIpAddress is enabled by default.>>
when AssociatePublicIpAddress exists {
AssociatePublicIpAddress == false <<AssociatePublicIpAddress is enabled.>>
}
}
}
}