A Config rule that checks if managed platform updates in an AWS Elastic Beanstalk environment is enabled. The rule is COMPLIANT if the value for ManagedActionsEnabled is set to true. The rule is NON_COMPLIANT if the value for ManagedActionsEnabled is set to false, or if a parameter is provided and its value does not match the existing configurations.
AWS DocumentationAWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
ConfigRule:
Type: "AWS::Config::ConfigRule"
Properties:
ConfigRuleName: "elastic-beanstalk-managed-updates-enabled"
Scope:
ComplianceResourceTypes:
- "AWS::ElasticBeanstalk::Environment"
Description: "A Config rule that checks if managed platform updates in an AWS Elastic Beanstalk environment is enabled. The rule is COMPLIANT if the value for ManagedActionsEnabled is set to true. The rule is NON_COMPLIANT if the value for ManagedActionsEnabled is s..."
Source:
Owner: "AWS"
SourceIdentifier: "ELASTIC_BEANSTALK_MANAGED_UPDATES_ENABLED"
Parameters: {}
Metadata: {}
Conditions: {}