-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add community contribution presets
- Loading branch information
Showing
2 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# Config Contributions | ||
|
||
## Community Presets | ||
|
||
These are a collection of presets from the community. | ||
|
||
!!! warning | ||
These presets are built from feedback from the community, they are not routinely tested. Use at your own risk. | ||
|
||
### Filter SSO Resources | ||
|
||
This is a preset to filter out AWS SSO resources. | ||
|
||
```yaml | ||
presets: | ||
sso: | ||
filters: | ||
IAMSAMLProvider: | ||
- type: "regex" | ||
value: "AWSSSO_.*_DO_NOT_DELETE" | ||
IAMRole: | ||
- type: "glob" | ||
value: "AWSReservedSSO_*" | ||
IAMRolePolicyAttachment: | ||
- type: "glob" | ||
value: "AWSReservedSSO_*" | ||
``` | ||
### Filter Control Tower | ||
This is a preset to filter out AWS Control Tower resources. | ||
```yaml | ||
presets: | ||
controltower: | ||
filters: | ||
CloudTrailTrail: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
CloudWatchEventsRule: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
EC2VPCEndpoint: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
EC2VPC: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
OpsWorksUserProfile: | ||
- type: "contains" | ||
value: "AWSControlTowerExecution" | ||
CloudWatchLogsLogGroup: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
- type: "contains" | ||
value: "AWSControlTowerBP" | ||
CloudWatchEventsTarget: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
SNSSubscription: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
SNSTopic: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
EC2Subnet: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
ConfigServiceDeliveryChannel: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
ConfigServiceConfigurationRecorder: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
CloudFormationStack: | ||
- type: "contains" | ||
value: "AWSControlTower" | ||
EC2RouteTable: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
LambdaFunction: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
EC2DHCPOption: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
IAMRole: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
- type: "contains" | ||
value: "AWSControlTower" | ||
IAMRolePolicyAttachment: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
- type: "contains" | ||
value: "AWSControlTower" | ||
IAMRolePolicy: | ||
- type: "contains" | ||
value: "aws-controltower" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters