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 AWS Certificate Manager (ACM) resources
The following rules are included:
let acm_certificates = Resources.*[
Type == "AWS::CertificateManager::Certificate"
]
rule acm_certificate_transparency_logging when %acm_certificates !empty {
%acm_certificates {
Properties {
CertificateTransparencyLoggingPreference !exists <<Transparency logging is disabled.>> OR
when CertificateTransparencyLoggingPreference exists {
CertificateTransparencyLoggingPreference == "ENABLED" <<Transparency logging is disabled.>>
}
}
}
}