github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/avd_docs/aws/config/AVD-AWS-0019/CloudFormation.md (about)

     1  
     2  Set the aggregator to cover all regions
     3  
     4  ```yaml---
     5  Resources:
     6    GoodExample:
     7      Type: AWS::Config::ConfigurationAggregator
     8      Properties:
     9        AccountAggregationSources:
    10          - AllAwsRegions: true
    11        ConfigurationAggregatorName: "GoodAccountLevelAggregation"
    12  
    13  ```
    14  ```yaml---
    15  Resources:
    16    GoodExample:
    17      Type: AWS::Config::ConfigurationAggregator
    18      Properties:
    19        OrganizationAggregationSource: 
    20          AllAwsRegions: true
    21        ConfigurationAggregatorName: "GoodAccountLevelAggregation"
    22  
    23  ```
    24  
    25