Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
A Config rule that checks whether Elastic Load Balancing has deletion protection enabled. The rule is NON_COMPLIANT if deletion_protection.enabled is false
AWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
ConfigRule:
Type: "AWS::Config::ConfigRule"
Properties:
ConfigRuleName: "elb-deletion-protection-enabled"
Scope:
ComplianceResourceTypes:
- "AWS::ElasticLoadBalancingV2::LoadBalancer"
Description: "A Config rule that checks whether Elastic Load Balancing has deletion protection enabled. The rule is NON_COMPLIANT if deletion_protection.enabled is false"
Source:
Owner: "AWS"
SourceIdentifier: "ELB_DELETION_PROTECTION_ENABLED"
Parameters: {}
Metadata: {}
Conditions: {}