Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/nuke_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,18 @@ IAMUsers:
- "^circle-ci-test$"

IAMGroups:
# Delete all groups - no infrastructure groups to protect
# IAM groups do not support tags, so the per-repo CircleCI cleanup jobs (which
# filter by the gw:repo tag) skip them and they leak until the account hits the
# GroupsPerAccount quota (OSS-4024). They are cleaned up here instead.
#
# Unlike the other resource types in this file, this is an allowlist rather than
# a blocklist: only groups matching a known test naming convention are deleted,
# so any real group is protected by default. Broaden this list as other repos'
# test group names are confirmed.
include:
names_regex:
# terraform-aws-security: "<uniqueId>-test-group-number-N", "test-group-<id>"
- "test-group"

IAMRoles:
exclude:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/nuke-account.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ env:
# Resources excluded across all accounts to prevent breaking infrastructure
COMMON_EXCLUDES: >-
--exclude-resource-type iam-user
--exclude-resource-type iam-group
--exclude-resource-type iam-role
--exclude-resource-type iam-service-linked-role
--exclude-resource-type oidc-provider
Expand Down
Loading