AWS Organizations & Multi-Account Governance
AWS Organizations lets you centrally manage many AWS accounts under one roof, share a single bill, and apply guardrails. The most-tested ideas are that consolidated billing combines usage to unlock volume discounts and share Reserved Instances/Savings Plans, that Service Control Policies (SCPs) set the maximum allowed permissions but never grant any, and that the management (payer) account sits at the top. Control Tower automates setting up a secure, multi-account landing zone on top of Organizations.
Q1 A company attaches a Service Control Policy (SCP) to an Organizational Unit that explicitly allows full S3 access. A user in an account under that OU still cannot read any S3 buckets. What is the most likely reason?
- SCPs do not grant permissions; the user still needs an IAM policy that allows the S3 actions
- The SCP must be attached to the management account instead of the OU
- Consolidated billing must be enabled before SCPs take effect
- S3 access can only be controlled through bucket policies, never through SCPs
- B — SCPs are meant to be attached to OUs or accounts to scope member accounts; attaching to the management account would not fix a missing IAM grant (and SCPs don't restrict the management account anyway).
- C — Consolidated billing is about combining charges, not about activating policy enforcement.
- D — SCPs can absolutely affect S3 actions as a ceiling; the limitation is that they grant nothing, not that they ignore S3.
Q2 A business runs 12 AWS accounts and wants one invoice plus pricing benefits where the combined usage of all accounts counts toward volume discount tiers. Which AWS Organizations feature delivers this?
- Service Control Policies
- Consolidated billing
- AWS Control Tower
- Tag policies
- A — SCPs are permission guardrails; they have nothing to do with billing or discounts.
- C — Control Tower automates setting up a governed multi-account environment, but the pooled-usage discount itself comes from consolidated billing.
- D — Tag policies standardize resource tags for organization and cost allocation; they do not aggregate usage for volume pricing.
Q3 One account in an organization purchases a Reserved Instance but only uses part of it. With default settings, what happens to the unused portion across the organization?
- The unused portion expires immediately and cannot be reclaimed
- It can only be used by the management account, never member accounts
- The discount can be shared and applied to matching usage in other accounts under consolidated billing
- It is automatically converted into a Savings Plan for the whole organization
- A — The benefit isn't lost; sharing is exactly the mechanism that prevents waste.
- B — Sharing flows across member accounts, not just the management account.
- D — RIs and Savings Plans are separate commitment types; AWS does not auto-convert one into the other.
Q4 A new cloud team wants to quickly stand up a secure, pre-configured multi-account environment with a landing zone, baseline guardrails, and centralized logging without manually wiring everything. Which AWS service is purpose-built for this?
- AWS IAM Identity Center
- AWS Config
- AWS Systems Manager
- AWS Control Tower
- A — IAM Identity Center manages workforce sign-in and access, not the overall account landing zone.
- B — AWS Config records and evaluates resource configuration compliance; it's a piece Control Tower uses, not the full setup tool.
- C — Systems Manager handles operational management of resources, not multi-account governance setup.
Q5 Which statement best describes the relationship between AWS Organizations and AWS IAM?
- Organizations manages accounts and sets permission boundaries with SCPs, while IAM grants the actual permissions within each account
- Organizations replaces IAM and grants user permissions directly
- IAM manages the organization structure and Organizations issues user credentials
- They are the same service marketed under two names
- B — Organizations never grants user permissions; that is always IAM's job.
- C — This reverses their roles; IAM does not manage org structure and Organizations does not issue user credentials.
- D — They are distinct services with different scopes.
Q6 A company wants all member accounts grouped by function — production, development, and security — so it can apply different guardrails to each group at once. Which Organizations feature should it use?
- Tag policies
- Organizational Units (OUs)
- Cost allocation tags
- Resource groups
- A — Tag policies standardize how resources are tagged; they do not group accounts for policy attachment.
- C — Cost allocation tags organize billing data, not account grouping for guardrails.
- D — Resource groups organize resources within an account, not accounts within an organization.
Q7 In an AWS Organization, which statement about the management (payer) account is correct?
- SCPs attached at the root restrict the management account just like member accounts
- It must be the account with the highest monthly usage
- It receives the consolidated bill for all member accounts and creates/manages the organization
- Each member account also receives its own separate invoice from AWS
- A — SCPs do not restrict the management account, even when attached at the root; it always retains full control.
- B — Usage level has nothing to do with which account is the management account.
- D — Member accounts do not get separate AWS invoices; charges roll up to the payer account.
Q8 A security team wants to guarantee that no account in the organization can launch resources in any AWS Region except us-east-1 and eu-west-1, regardless of what local IAM admins try. Which approach achieves this guardrail?
- Add an IAM policy in each account denying other Regions
- Enable a tag policy requiring a Region tag
- Use cost allocation tags to track Region usage
- Apply a Service Control Policy that denies actions outside the allowed Regions
- A — Local IAM policies can be changed by account admins, so they don't guarantee an org-wide restriction.
- B — Tag policies enforce tag formatting, not which Regions can be used.
- C — Cost allocation tags only help report spending; they enforce nothing.
Q9 A finance manager wants consistent, correctly formatted tags (for example, all resources tagged with a "CostCenter" key in a standard format) enforced across accounts so cost reports are reliable. Which feature is designed for this?
- Tag policies
- Service Control Policies
- Organizational Units
- AWS Budgets
- B — SCPs control allowed actions, not tag formatting standards.
- C — OUs group accounts; they don't define tag standards.
- D — AWS Budgets alerts you when spending crosses thresholds; it doesn't enforce tag formats.
Q10 Why is using a multi-account strategy (separate accounts for prod, dev, and test) often considered a best practice instead of putting everything in one account?
- It is the only way to get internet access for workloads
- It provides strong isolation of resources, separate billing visibility, and a smaller blast radius if one account is compromised
- It removes the need for IAM permissions entirely
- It automatically makes every workload highly available across Regions
- A — Internet access has nothing to do with the number of accounts.
- C — You still need IAM inside every account to grant permissions.
- D — High availability comes from architecture (Multi-AZ/Region design), not from splitting accounts.
Q11 A developer's IAM policy in a member account allows EC2 actions, but an SCP attached to the account's OU does not include EC2 in its allowed actions. What is the effective result for the developer?
- EC2 actions are allowed because IAM overrides SCPs
- EC2 actions are allowed only in the management account
- EC2 actions are denied because the SCP ceiling does not permit them
- EC2 actions are allowed but billed at a higher rate
- A — IAM never overrides an SCP; the SCP is the ceiling IAM must stay under.
- B — The management account isn't relevant to a member-account developer's access here.
- D — SCPs affect permissions, not pricing.
Q12 Which scenario correctly describes a benefit a company gains purely from enabling consolidated billing in AWS Organizations?
- It automatically encrypts all data across member accounts
- It blocks risky API actions across the organization
- It provisions new accounts with built-in guardrails automatically
- Combined data-transfer and tiered usage across accounts can reach lower per-unit pricing than each account alone
- A — Billing does not encrypt data; encryption is a separate service-level setting.
- B — Blocking API actions is the job of SCPs, not billing.
- C — Automatic account provisioning with guardrails is a Control Tower (Account Factory) feature.
Q13 A company asks which service it should use to centrally manage workforce user sign-in and assign access across many AWS accounts in its organization. Which service fits best?
- AWS IAM Identity Center
- AWS Organizations alone
- Service Control Policies
- AWS Control Tower guardrails
- B — Organizations manages accounts and billing but is not a sign-in/identity assignment tool by itself.
- C — SCPs set permission ceilings; they don't manage user sign-in.
- D — Control Tower guardrails enforce policy baselines, not centralized user authentication.
Q14 A company already uses AWS Organizations with SCPs. It now wants automated account provisioning, pre-built guardrails, and a dashboard to monitor compliance across accounts with minimal manual setup. What is the most accurate way to describe how Control Tower relates to Organizations here?
- Control Tower replaces Organizations and the company must delete its existing organization
- Control Tower sits on top of Organizations and adds automated setup, guardrails, and a governance dashboard
- Control Tower and Organizations are unrelated and cannot be used together
- Control Tower only manages billing, while Organizations only manages security
- A — Control Tower uses Organizations; it doesn't replace or require deleting it.
- C — They are tightly related — Control Tower depends on Organizations.
- D — Neither description is accurate; Control Tower governs the multi-account environment broadly, not just billing.
Q15 Which statement about Service Control Policies (SCPs) is TRUE?
- SCPs grant permissions to IAM users when attached to an account
- SCPs only work in the management account and ignore member accounts
- SCPs apply to the root user of member accounts and define the maximum available permissions, but grant nothing
- SCPs are used to allocate Reserved Instances between accounts
- A — SCPs grant nothing; IAM does the granting within the SCP ceiling.
- B — SCPs apply to member accounts/OUs; the management account is the one they do not restrict.
- D — RI sharing is a consolidated-billing feature, unrelated to SCPs.
Q16 An organization sees that combined Savings Plans commitments are being applied across several member accounts automatically, lowering total cost. A manager wants to confirm which mechanism enables this sharing. What is the correct answer?
- Tag policies pooling commitments across accounts
- Service Control Policies enabling discount transfers
- Control Tower guardrails redistributing commitments
- Consolidated billing sharing Savings Plans and Reserved Instance benefits across accounts
- A — Tag policies standardize tags; they have no role in commitment sharing.
- B — SCPs are permission guardrails, not billing mechanisms.
- C — Control Tower governs account setup and compliance, not discount pooling.