Business Challenge
A company has done the multi-account work properly. There are eighty accounts under an organisation, arranged into OUs by environment and business unit, and the SCPs at each level were written carefully and tested on one account at a time. The platform team can answer, precisely, what any account is permitted to do.
Three things also run in the management account. The build pipeline, because that is where the organisation was created and the first CI role was made there in week one. A shared VPC with a Direct Connect attachment, because networking was set up before the account structure settled. And the cost reporting stack, because Cost and Usage Reports are configured from the payer account and it seemed natural to keep the Athena tables beside them.
Every one of those workloads is outside every guardrail the company wrote. Not partially, not in edge cases: SCPs don't affect users or roles in the management account. They affect only the member accounts in your organization. The deny on cloudtrail:StopLogging, the Region restriction, the block on creating IAM users β none of them apply to the pipeline role that can already assume its way into every account in the estate.
Nobody made a mistake here. Each of those three decisions was locally reasonable, made before the guardrails existed, and never revisited because nothing ever failed. That is the characteristic of this problem: the management account does not behave differently in any way you can observe. It behaves differently only in what it would have stopped.
The account that authors the guardrails cannot be subject to them. If it were, one bad SCP would lock the organisation out of the only place the SCP can be removed, and the organisation would be unrecoverable. The exemption is the escape hatch that makes root-level policy safe to use at all β which means the correct response is not to try to govern the management account, but to put almost nothing in it.
Architecture
AWS states the design rule and the reason in the same breath: we recommend that you use the management account and its users and roles for tasks that must be performed only by that account. Store all of your AWS resources in other AWS accounts in the organization and keep them out of the management account. And then, explicitly, the why β one important reason to keep your resources in other accounts is because Organizations service control policies do not work to restrict any users or roles in the management account.
What the guardrail does reach, which is more than people expect
Inside a member account, an SCP is close to absolute. An SCP restricts permissions for IAM users and roles in member accounts, including the member account's root user, and if a permission is blocked at any level above the account, a user or role in the affected account can't use that permission, even if the account administrator attaches the AdministratorAccess IAM policy.
That is a genuinely strong property and it is the whole value proposition: a local administrator, acting in good faith or otherwise, cannot exceed the ceiling. It is also why the contrast with the management account is so sharp. The same policy that binds a member account's root user does not bind an ordinary IAM role in the management account.
The three other things SCPs do not reach
The management account exemption is the largest, but it is one of four. SCPs do not affect any service-linked role. Service-linked roles enable other AWS services to integrate with AWS Organizations and can't be restricted by SCPs. There is a short list of root-user tasks outside their scope β Enterprise support registration, CloudFront trusted signer functionality, reverse DNS configuration. And SCPs don't affect resource-based policies directly, and they don't affect users or roles from accounts outside the organization, which is the gap that resource control policies were introduced to close.
Taken together, these define what an SCP is: a ceiling on principals your organisation manages. Not a ceiling on your resources, not a ceiling on AWS's own integrations, and not a ceiling on the account doing the ceiling-setting.
Delegated administration, and the fact that makes it worth doing
The remedy AWS recommends is to move the work out: where possible, we recommend delegating responsibilities and services outside the management account, and you can register multiple delegated administrators for services that support this functionality. For Organizations itself, from the organization's management account, you can delegate policy management for Organizations to specified member accounts to perform policy actions that are by default available only to the management account.
Here is the sentence that decides whether delegation is worth the setup, and it reads at first like a limitation: SCPs apply to member accounts that are designated as delegated administrators.
It is not a limitation. It is the entire point. Delegating SCP management to a security tooling account does not create a second exempt account β it moves privileged work from an account where guardrails are impossible into an account where they apply in full, root user included. The alternative is not "the same work, governed less"; the alternative is doing that work in the management account, where nothing you write can constrain it.
Why This Architecture Holds Up
It makes the recovery path a design input rather than an afterthought
A control plane that can lock itself out is a control plane nobody will use aggressively. Because the management account is exempt, an SCP that turns out to be catastrophically wrong is always removable, from a known place, by a known identity. That is what allows a platform team to write a genuinely restrictive root-level policy instead of a cautious one β and cautious guardrails are the ones that do not prevent anything.
The blast radius of the exemption is a function of one number
How much damage the exemption can do is exactly proportional to how much lives in the management account. That is unusual and useful: most security properties are hard to measure, and this one is a resource count. An organisation whose management account contains an organisation, a billing configuration and nothing else has an exemption with almost nothing behind it.
Delegation scales where management-account access does not
There is only one management account, and access to it is the highest-value credential in the estate β so the number of people who can hold it is small and the queue for their attention is not. Delegated administration converts that into per-account access, in accounts that are governed, with as many delegated administrators as there are services that support them. The bottleneck stops being a single account's access list.
It separates the invoice from the architecture
A quieter benefit AWS names directly: separating your resources from your management account also helps you to understand the charges on your invoices. The management account is the payer, so its own consumption is mixed into the account that aggregates everyone else's. Workloads there are the hardest spend in the organisation to attribute, and the least likely to be noticed growing.
Key Architecture Decisions
This is the first exercise, not the last, and it is finite. List every resource, role and pipeline in the management account, then read each one against the question the guardrails are supposed to answer. A CI role there is not "a CI role with elevated trust" — it is a principal that no organisation-level control applies to, in the account that can also modify the controls.
The order to move thingsMove by blast radius rather than by ease: anything holding credentials or assuming roles into other accounts first, then anything internet-facing, then everything else. Networking is usually the hardest and the least urgent, because a shared VPC is not a principal. Cost tooling is usually the easiest, since a CUR can be delivered to a bucket in a different account.
Delegated administration is the mechanism that lets the management account shrink towards its documented purpose. Register delegated administrators for the services that support them, and site them in the account whose job that work actually is — security tooling for the detective services, a shared services account for StackSets and Service Catalog.
Concrete ruleThe registration itself is a management-account action and it grants standing privilege in another account, so it belongs under change control with a named owner per service. Review the delegated administrator list on the same cadence as the management account access list, because an unregistered service is visible and a stale delegation is not.
AWS now applies a baseline automatically: Organizations turns on service control policies and attaches an SCP to the root that denies both the organizations:LeaveOrganization and account:CloseAccount actions for all member accounts. Without it, a member account can remove itself from the organisation — and an account that has left is an account every SCP has stopped applying to.
These controls apply only to organizations created through the AWS Organizations console after July 10, 2026, and don't affect existing organizations. Organizations created with the CLI, the SDKs or CloudFormation don't get them either — which is to say every organisation built the way a platform team would build one. If yours predates that date or came from CreateOrganization, you must configure it manually. Check rather than assume.
Two failure modes with the same shape — both take out the whole organisation at once, and both are documented warnings rather than discoveries. You should not remove the FullAWSAccess policy unless you modify or replace it with a separate policy with allowed actions, otherwise all AWS actions from member accounts will fail. An SCP allow-list that looks complete is not a substitute until it genuinely is.
And the rolloutAWS strongly recommends that you don't attach SCPs to the root of your organization without thoroughly testing the impact that the policy has on accounts. Create an OU, move accounts into it in small numbers, and use service last accessed data to find out what an account actually uses before deciding what it may use. Note also that disabling the SCP policy type detaches every SCP, and those attachments are lost and aren't automatically recoverable — disabling is not a reversible toggle.
What belongs in the management account, and what does not
| Thing | Management account? | Why |
|---|---|---|
| The organisation, OUs and policy authoring | Yes | Only callable there, and the recovery path depends on it |
| Account creation and closure | Yes | A management-account operation by design |
| Billing configuration | Yes, configuration only | The payer relationship lives here; the reporting stack does not have to |
| Detective services β GuardDuty, Security Hub, Access Analyzer | No β delegate | Delegated administrators exist precisely for this, and the target account stays governed |
| CI/CD pipelines and deployment roles | No | The highest-privilege principals in the estate, in the one account no SCP reaches |
| Shared networking | No | Belongs in a network account; nothing about a transit gateway needs the payer |
| Log archive and CUR data | No | A retention guarantee is only as strong as the SCP over the account holding it |
| Any application workload | No | Ungoverned, and unattributable on the invoice |
An SCP is one narrowing gate among several, and they compose rather than override: if both a permissions boundary and an SCP are present, then the boundary, the SCP, and the identity-based policy must all allow the action. Three ceilings, one grant. In the management account, one of those three ceilings is simply absent β which is why a permissions boundary on a management-account role is doing more work there than the same boundary anywhere else in the estate.
Reference: the baseline SCP, and where to attach it
The policy AWS now attaches for you on new console-created organisations. If yours predates 10 July 2026 or was created by API, this is the one to add first — it protects the precondition every other guardrail depends on, which is that the account is still in the organisation.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "DenyLeaveOrganizationAndCloseAccount",
"Effect": "Deny",
"Action": [
"organizations:LeaveOrganization",
"account:CloseAccount"
],
"Resource": "*"
}
]
}
Note the shape: an explicit Deny, attached at the root, with no conditions. It is the rare guardrail that needs no exceptions, because leaving the organisation is never something a member account should do on its own initiative β and it is evaluated in the deny sweep, so nothing in any member account can override it. Removal stays possible from the management account, which is exactly the escape hatch this whole post is about.
Closing Thought
Most security architecture is about drawing boundaries and then verifying that things sit on the correct side of them. The management account is unusual because it is a boundary with a hole in it, the hole is deliberate, and no amount of policy will close it. What is left to decide is not whether the hole exists but how much you put behind it.
That reframes the work in a useful way. There is no clever SCP to write here, no condition key that fixes it, and no configuration to review annually. There is an inventory, and the job is to make it shorter. An organisation whose management account holds an organisation and a billing relationship has an exemption that grants an attacker almost nothing; one that also holds the deployment pipeline has an exemption that grants them the estate.
The question to ask of anything running in the management account: if every guardrail we wrote did not exist, would I still be comfortable with this? For that account, the guardrails genuinely do not exist. The answer has to stand on its own, and for most things it does not β which is the answer.
Security & Identity — the account baseline: what a new account should already have on the day it is created, why the answer is a deployment rather than a checklist, and the controls that are far harder to add to an account than to start it with.
Official AWS Reference
- AWS Documentation β Service control policies (SCPs)
- AWS Documentation β Best practices for the management account
- AWS Documentation β Default security controls in AWS Organizations
- AWS Documentation β Delegated administrator for AWS Organizations
- AWS Documentation β Resource control policies (RCPs)
- AWS Documentation β AWS services that you can use with AWS Organizations
Comments