-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(controltower): add AWS Control Tower resources to default Allowl…
…ist configuration file (#2953) Co-authored-by: Toni de la Fuente <[email protected]>
- Loading branch information
1 parent
8533714
commit 008534d
Showing
4 changed files
with
72 additions
and
2 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
File renamed without changes.
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,65 @@ | ||
# When using Control Tower, guardrails prevent access to certain protected resources. | ||
# The allowlist below ensures that warnings instead of errors are reported for the affected resources. | ||
# https://docs.aws.amazon.com/controltower/latest/userguide/how-control-tower-works.html | ||
########################### CONTROL TOWER ALLOWLIST ########################### | ||
### The following file includes all resources created by AWS Control Tower ### | ||
Allowlist: | ||
Accounts: | ||
"*": | ||
Checks: | ||
"cloudwatch_log_group_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "/aws/lambda/aws-controltower-NotificationForwarder" | ||
- "StackSet-AWSControlTowerBP-*" | ||
"awslambda_function_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "aws-controltower-NotificationForwarder" | ||
"cloudformation_stacks_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "StackSet-AWSControlTowerGuardrailAWS-*" | ||
- "StackSet-AWSControlTowerBP-*" | ||
"cloudtrail_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "aws-controltower-BaselineCloudTrail" | ||
"iam_role_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "aws-controltower-AdministratorExecutionRole" | ||
- "aws-controltower-CloudWatchLogsRole" | ||
- "aws-controltower-ConfigRecorderRole" | ||
- "aws-controltower-ForwardSnsNotificationRole" | ||
- "aws-controltower-ReadOnlyExecutionRole" | ||
- "AWSControlTower_VPCFlowLogsRole" | ||
- "AWSControlTowerExecution" | ||
"iam_policy_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "AWSControlTowerServiceRolePolicy" | ||
"s3_bucket_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "aws-controltower-logs-*" | ||
- "aws-controltower-s3-access-logs-*" | ||
"sns_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "aws-controltower-SecurityNotifications" | ||
"vpc_*": | ||
Regions: | ||
- "*" | ||
Resources: | ||
- "*" | ||
Tags: | ||
- "Name=aws-controltower-VPC" |
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