Prepstellar

SAA-C03 · Secure Access to AWS Resources

23 cards

Multi-Account Access and Governance

Swipe, scroll or use ← →
  1. Three different jobs, three different tools

    Once a company runs more than one AWS account, three needs appear at the same time and get confused with one another: giving people access, building and running the accounts, and capping what anyone can do. Naming the job first is what makes the tool choice obvious.

    AWS Organizations can manage multiple accounts and apply permissions guardrails at the organization, organizational unit, or account level. IAM Identity Center can centrally manage workforce access to multiple AWS accounts.

    The job What it sounds like Where it belongs
    Identity assignment "Our staff need access to several accounts" IAM Identity Center
    Environment orchestration "We need accounts created and governed consistently" AWS Control Tower
    Permission ceiling "Nobody in these accounts may ever do X" A service control policy
    1 / 23
  2. Three different jobs, three different tools

    The guardrail level matters as much as the guardrail itself. AWS Organizations can apply a ceiling at three levels:

    • the whole organization,
    • an organizational unit grouping accounts,
    • a single account.

    That range is why a permission ceiling can be narrow or company-wide without changing mechanism. Classify the requirement as identity assignment, environment orchestration, or a permission ceiling before you pick anything, and the rest of this topic falls into place.

    2 / 23
  3. Quick check

    A company needs its workforce to reach several AWS accounts through one central place. Which service does that?

    1. AThe Control Tower dashboard, which reports on accounts and controls

      The dashboard is an oversight surface; it reports on accounts rather than granting people access to them.

    2. BAccount Factory, which provisions accounts

      Account Factory creates accounts from templates; it does not manage who signs in to them.

    3. CIAM Identity Center, which manages workforce access

      Right. IAM Identity Center centrally manages workforce access to multiple AWS accounts.

    3 / 23

  4. Control Tower as the orchestration layer

    AWS Control Tower sets up and governs a multi-account environment by orchestrating AWS Organizations, AWS Service Catalog, and IAM Identity Center.

    Read that sentence twice, because it explains what Control Tower is not: it is not a replacement for those services. It drives them. Anything the underlying services can do stays available for a team that wants to extend the setup by hand.

    Service underneath What Control Tower uses it for
    AWS Organizations Account structure and organization-level policy
    AWS Service Catalog Standardized, pre-approved account products
    IAM Identity Center Central workforce access to the accounts it creates
    4 / 23
  5. Control Tower as the orchestration layer

    What Control Tower produces is a landing zone. A Control Tower landing zone is a multi-account environment based on security and compliance best practices.

    It is the foundation, not a single setting: the accounts, the organizational structure, and the governance applied to them. Three near misses are worth ruling out now:

    • A landing zone is not one identity policy handing every administrator access everywhere.
    • It is not a directory instance scoped to isolated applications in one account.
    • It is not a temporary role session used to reach a single account.

    Those are all narrower objects. The landing zone is the environment they would live inside.

    5 / 23
  6. Quick check

    Which statement describes a Control Tower landing zone?

    1. AA governed multi-account environment based on security and compliance practices

      Right. The landing zone is the multi-account environment Control Tower sets up and governs.

    2. BA temporary role session used to reach one destination account

      A role session is short-lived access to a single account, not a governed multi-account environment.

    3. CA directory instance limited to isolated applications

      A directory instance scoped to isolated applications serves one account's applications; it is not the environment itself.

    6 / 23

  7. Provisioning and oversight

    Two Control Tower features are constantly mixed up because both deal with accounts. One creates them, the other watches them.

    Control Tower Account Factory standardizes and automates the provisioning of new accounts from configurable templates. Instead of a person clicking through account setup and hoping the result matches the last one, a template produces the same shape every time.

    The Control Tower dashboard provides central oversight of provisioned accounts, enabled controls, and noncompliant resources. It is the place to see what exists and what is out of line.

    Need Feature
    "Create the next twenty accounts the same way" Account Factory
    "Show me every account, control, and noncompliant resource" Dashboard
    7 / 23
  8. Provisioning and oversight

    The distinction matters in scenario questions because the wrong feature is always plausible. The dashboard cannot issue credentials to workforce users, define how much permission an account may have, or build a trust relationship between two accounts. It reports. Likewise, Account Factory does not monitor anything after the account exists; it standardizes how the account came to be.

    8 / 23
  9. Quick check

    A team wants new accounts created consistently from pre-approved configurations. Which Control Tower feature does that?

    1. AThe dashboard, which shows provisioned accounts and noncompliant resources

      The dashboard gives visibility over accounts that already exist rather than creating them.

    2. BAccount Factory and its configurable templates

      Right. Account Factory standardizes and automates the provisioning of new accounts from configurable templates.

    3. CA service control policy attached to the management account

      A permissions ceiling limits what identities may do; it does not provision accounts.

    9 / 23

  10. Keep your progress in the app

    That’s 3 of 9 quick checks. In the app they stay answered, and every lesson remembers where you left off.

  11. Controls keep the environment governed

    Provisioning an account well is a one-time act. Keeping it in line is continuous, and that is what controls are for. Control Tower controls provide ongoing governance and can be preventive, detective, or proactive.

    Kind of control What it does about a risky configuration
    Preventive Stops it from happening
    Detective Reports it once it exists
    Proactive Catches it before the resource is deployed

    Controls also do practical housekeeping that teams otherwise script themselves: Control Tower can apply controls that help create and preserve security logs and required cross-account access permissions. Logging that survives and cross-account permissions that stay in place are governance outcomes, not one-off tasks.

    10 / 23
  12. Quick check

    An organization needs rules that keep security logs in place and preserve required cross-account access permissions. What provides them?

    1. AAccount Factory templates applied at account creation

      A provisioning template shapes a new account once; it does not keep logs and permissions in place afterwards.

    2. BControl Tower controls, which govern accounts on an ongoing basis

      Right. Control Tower controls provide ongoing governance and can help create and preserve security logs and required cross-account access permissions.

    3. CThe Control Tower dashboard, by reporting noncompliant resources each day

      The dashboard shows what is noncompliant; visibility alone does not create or preserve the logs and permissions.

    11 / 23

  13. A service control policy is a ceiling, never a grant

    This is the single most misread idea in multi-account design. An SCP centrally defines the maximum available permissions for IAM users and roles in member accounts. And immediately: an SCP does not grant permissions; an identity-based or resource-based policy must grant the requested access.

    A ceiling with nothing underneath it gives nobody anything. Access still has to be granted somewhere.

    Effective permissions are the intersection of the applicable SCP and resource control policy limits with permissions granted by identity-based and resource-based policies. Intersection is the operative word: a request needs a positive grant and room under every applicable ceiling.

    12 / 23
  14. A service control policy is a ceiling, never a grant

    That makes permission diagnosis a two-step routine rather than a hunt:

    1. Is the action granted? Look at the identity-based or resource-based policy.
    2. Is the action still within every ceiling? Look at each applicable organization-level limit.

    Both steps must come back yes. If the grant is missing, no ceiling can supply it. If a ceiling excludes the action, no grant can push past it.

    13 / 23
  15. Quick check

    An IAM policy in a member account grants an action, and the organizational-unit ceiling allows it as well. What follows?

    1. AThe action fails, because an organization-level limit can never take part in an allowed request

      An allowed request is normal: the ceiling participates by not excluding the action, and the identity policy supplies the grant.

    2. BThe action succeeds because the organization-level limit itself supplied the permission

      A maximum-permissions policy never grants anything; the permission came from the identity-based policy.

    3. CThe action can succeed: the grant fits inside the ceiling

      Right. Effective permissions are the intersection, so a granted action that stays inside the ceiling can proceed.

    14 / 23

  16. Who the ceiling reaches

    Scope is the second half of the mechanism, and it has one asymmetry worth memorizing. SCPs affect member accounts, including delegated administrator accounts, but do not affect users or roles in the management account.

    A delegated administrator sounds privileged, and it is — but it is still a member account, so the ceiling applies to it. The management account is the exception, and the only one.

    Identity Reached by the ceiling?
    Users and roles in an ordinary member account Yes
    Users and roles in a delegated administrator account Yes
    Users and roles in the management account No

    One prerequisite completes the picture: SCPs are available only when an organization has all features enabled. Without that, the mechanism is not on the table at all.

    15 / 23
  17. Quick check

    A company wants a maximum-permissions policy to constrain a delegated administrator account while leaving management-account identities untouched. Is that design valid?

    1. AYes. A delegated administrator account is still a member account and is affected, while management-account identities are not.

      Right. Delegated administrator accounts are member accounts and are reached, while users and roles in the management account are not.

    2. BNo. Delegated administrator accounts are exempt from every such policy.

      Delegated administrators are not exempt; being a delegated administrator does not remove the account from member scope.

    3. CNo. The policy must grant the permission before it can limit it.

      These policies never grant anything, so granting first is not a precondition for limiting.

    16 / 23

  18. Diagnosing a blocked action

    Put the two rules together and a common support ticket answers itself. An administrator attaches AdministratorAccess inside a member account, and the action still fails because an inherited ceiling denies it.

    Nothing is broken. The grant is present, the ceiling excludes the action, and the intersection is empty. A broad identity policy is still an identity policy: it cannot lift a maximum defined above the account. Nor does the request migrate anywhere — the management account's exemption applies to identities in that account, not to work performed elsewhere.

    The fix is to change the ceiling, or to accept it. It is never to grant harder.

    17 / 23
  19. Quick check

    An administrator attaches AdministratorAccess in a member account, but an inherited organization-level policy denies the action. What happens?

    1. AThe action stays unavailable: the ceiling still applies.

      Right. Maximum permissions are defined above the account, and no identity policy inside it can exceed them.

    2. BThe action succeeds, because AdministratorAccess overrides organization policy.

      A broad identity policy grants generously but still cannot exceed the maximum available permissions.

    3. CThe action moves to the management account, where the ceiling is ignored.

      Requests do not relocate; the management-account exception covers identities in that account, not actions attempted in a member account.

    18 / 23

  20. Choosing the mechanism

    The two selections at the end of this topic are short and worth holding verbatim.

    Use AWS Control Tower when the requirement is to establish and operate a governed landing zone with account provisioning and oversight. Use an SCP when the requirement is to set a maximum-permissions guardrail across an organization, organizational unit, or member account.

    The deciding factor is how much of the operating layer the requirement actually asks for. A request for a ceiling and nothing else does not justify a landing zone, an account-provisioning workflow, or a dashboard.

    19 / 23
  21. Choosing the mechanism

    When the requirement combines standardized account creation, continuous visibility, company-wide governance controls, and the ability to keep extending the AWS services underneath, that combination points to Control Tower, because it orchestrates AWS Organizations, AWS Service Catalog, and IAM Identity Center rather than replacing them.

    Requirement as stated Fitting choice Why the alternatives fail
    A ceiling over selected organizational units, no new provisioning workflow Service control policies at those levels Account Factory adds provisioning nobody asked for; a dashboard filter changes no permission
    Standardized creation plus oversight plus controls, services still extensible AWS Control Tower Ceilings alone provision nothing and monitor nothing; identity management alone detects no non-conformance; a single cross-account role is not a governance framework
    20 / 23
  22. Quick check

    An architect needs a permissions ceiling over selected organizational units and does not want a new account-provisioning workflow. What fits?

    1. AAdopt Control Tower and run its landing zone, Account Factory, and dashboard

      Control Tower brings the provisioning and operating layer the requirement explicitly excludes.

    2. BFilter the Control Tower dashboard to those units

      Filtering a view changes what is displayed and never limits what an identity may do.

    3. CAttach service control policies at those organizational units

      Right. A maximum-permissions guardrail applied at organization, organizational unit, or account level is exactly this mechanism.

    21 / 23

  23. Key takeaways

    • Name the job first: identity assignment, environment orchestration, or permission ceiling.
    • Control Tower orchestrates: it sets up and governs a multi-account environment on top of AWS Organizations, AWS Service Catalog, and IAM Identity Center.
    • Know its parts: a landing zone is the governed environment, Account Factory provisions accounts from templates, the dashboard gives oversight, and controls govern continuously as preventive, detective, or proactive rules.
    • A ceiling grants nothing: maximum permissions are defined for member-account identities, and access still requires an identity-based or resource-based grant, with effective permissions being the intersection.
    • Mind the scope: member accounts including delegated administrators are affected, management-account identities are not, and the mechanism requires all organization features enabled.
    22 / 23
  24. Quick check

    Which pairing of requirement and mechanism is right?

    1. AA ceiling across an organizational unit is set with Account Factory

      Account Factory provisions accounts from templates and sets no permission limits.

    2. BA governed landing zone with provisioning and oversight calls for Control Tower, while a maximum-permissions guardrail calls for a service control policy

      Right. Those are the two documented selections, and they follow from what each requirement asks for.

    3. CWorkforce access to many accounts is delivered by the Control Tower dashboard

      The dashboard reports on accounts, controls, and noncompliant resources; IAM Identity Center is what manages workforce access.

    23 / 23

  25. 9 quick checks · then the test

    In the app, finishing the quick checks opens this lesson’s 10-question test, and the ones you miss come back exactly when you’re about to forget them.

The whole course, on your phone

Lessons you can read, audio you can listen to on the way to work, and practice that remembers what you got wrong.