SAA-C03 Design Secure Architectures Practice Question
This SAA-C03 practice question tests your understanding of design secure architectures. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Current IAM policy attached to arn:aws:iam::123456789012:role/AppProvisioner:
- iam:CreateRole
- iam:AttachRolePolicy
- iam:PutRolePolicy
- iam:PassRole
Observed issue:
Developers created arn:aws:iam::123456789012:role/BatchJobRole and attached broad S3 and KMS permissions.
Audit note: "Need delegated role creation with a hard upper bound on permissions."
Based on the exhibit, the platform team wants developers to create application roles for Lambda and ECS, but no developer-created role may ever exceed the approved permission set. Which change best meets this requirement?
Exhibit
Current IAM policy attached to arn:aws:iam::123456789012:role/AppProvisioner:
- iam:CreateRole
- iam:AttachRolePolicy
- iam:PutRolePolicy
- iam:PassRole
Observed issue:
Developers created arn:aws:iam::123456789012:role/BatchJobRole and attached broad S3 and KMS permissions.
Audit note: "Need delegated role creation with a hard upper bound on permissions."
A
Remove all IAM permissions from AppProvisioner and require a central security team to create every role manually.
Why wrong: This would certainly reduce risk, but it removes the delegated administration model the team explicitly needs. It is operationally expensive and slows delivery unnecessarily.
B
Attach a permissions boundary strategy to the delegated workflow and require every created role to include that boundary using the iam:PermissionsBoundary condition.
A permissions boundary creates an upper limit on what any developer-created role can ever do, even if someone later attaches broader policies. Requiring the boundary during role creation prevents privilege escalation while still allowing delegated self-service for approved application roles. This is the standard AWS pattern when teams need to create roles but must remain inside a strict security envelope.
C
Allow developers to keep creating roles, but add a CloudTrail rule that alerts security after a privileged policy is attached.
Why wrong: Alerting after the fact detects bad changes, but it does not prevent a powerful role from being created or used. The requirement is preventive least privilege, not detective monitoring alone.
D
Move the delegated IAM workflow into a separate VPC and restrict it with security groups and network ACLs.
Why wrong: IAM authorization is not controlled by VPC networking constructs. Security groups and network ACLs do not restrict IAM actions such as role creation or policy attachment.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Attach a permissions boundary strategy to the delegated workflow and require every created role to include that boundary using the iam:PermissionsBoundary condition.
Option B is correct because it uses a permissions boundary to enforce the maximum permission set that any developer-created role can have. By attaching a permissions boundary to the delegated workflow and using the `iam:PermissionsBoundary` condition in the trust policy, every role created by developers is automatically constrained to the approved boundary, preventing any role from exceeding the approved permission set even if the developer tries to attach additional policies.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Remove all IAM permissions from AppProvisioner and require a central security team to create every role manually.
Why it's wrong here
This would certainly reduce risk, but it removes the delegated administration model the team explicitly needs. It is operationally expensive and slows delivery unnecessarily.
When this WOULD be correct
In a scenario where the requirement is to enforce strict central control and no delegation is allowed, and the security team has the capacity to manually create every role, this option would be correct.
✓
Attach a permissions boundary strategy to the delegated workflow and require every created role to include that boundary using the iam:PermissionsBoundary condition.
Why this is correct
A permissions boundary creates an upper limit on what any developer-created role can ever do, even if someone later attaches broader policies. Requiring the boundary during role creation prevents privilege escalation while still allowing delegated self-service for approved application roles. This is the standard AWS pattern when teams need to create roles but must remain inside a strict security envelope.
Related concept
Read the scenario before looking for a memorised answer.
✗
Allow developers to keep creating roles, but add a CloudTrail rule that alerts security after a privileged policy is attached.
Why it's wrong here
Alerting after the fact detects bad changes, but it does not prevent a powerful role from being created or used. The requirement is preventive least privilege, not detective monitoring alone.
When this WOULD be correct
In a scenario where the requirement is to detect and respond to policy violations after they happen, rather than prevent them, and the organization has a process to quickly revoke excessive permissions upon alert.
✗
Move the delegated IAM workflow into a separate VPC and restrict it with security groups and network ACLs.
Why it's wrong here
IAM authorization is not controlled by VPC networking constructs. Security groups and network ACLs do not restrict IAM actions such as role creation or policy attachment.
When this WOULD be correct
In a scenario where the requirement is to isolate a sensitive IAM workflow from other network traffic to prevent unauthorized access or data exfiltration, placing it in a separate VPC with restrictive security groups and network ACLs would be correct. For example, if the concern is that the IAM workflow might be accessed from compromised instances in other VPCs.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The SAA-C03 exam frequently reuses these exact scenarios with slightly different constraints.
✓Attach a permissions boundary strategy to the delegated workflow and require every created role to include that boundary using the iam:PermissionsBoundary condition.Correct answer▾
Why this is correct
A permissions boundary creates an upper limit on what any developer-created role can ever do, even if someone later attaches broader policies. Requiring the boundary during role creation prevents privilege escalation while still allowing delegated self-service for approved application roles. This is the standard AWS pattern when teams need to create roles but must remain inside a strict security envelope.
✗Remove all IAM permissions from AppProvisioner and require a central security team to create every role manually.Wrong answer — click to see why▾
Why this is wrong here
This option removes all IAM permissions from AppProvisioner, which would break the delegated workflow entirely, preventing developers from creating any roles at all, not just limiting them to approved permissions.
★ When this WOULD be the correct answer
In a scenario where the requirement is to enforce strict central control and no delegation is allowed, and the security team has the capacity to manually create every role, this option would be correct.
Why candidates choose this
Candidates may think that centralizing role creation is the safest way to prevent permission escalation, overlooking the need for automation and delegation in a developer workflow.
✗Allow developers to keep creating roles, but add a CloudTrail rule that alerts security after a privileged policy is attached.Wrong answer — click to see why▾
Why this is wrong here
This option only alerts after a privileged policy is attached, but does not prevent the violation from occurring, failing the requirement that no developer-created role may ever exceed the approved permission set.
★ When this WOULD be the correct answer
In a scenario where the requirement is to detect and respond to policy violations after they happen, rather than prevent them, and the organization has a process to quickly revoke excessive permissions upon alert.
Why candidates choose this
Candidates may think that detection and alerting is sufficient for compliance, or they underestimate the need for preventive controls like permissions boundaries.
✗Move the delegated IAM workflow into a separate VPC and restrict it with security groups and network ACLs.Wrong answer — click to see why▾
Why this is wrong here
IAM permissions are managed within AWS IAM, not at the network layer. Moving the workflow into a separate VPC and using security groups/network ACLs controls network traffic but does not restrict IAM permissions, so it cannot prevent developers from creating roles with excessive permissions.
★ When this WOULD be the correct answer
In a scenario where the requirement is to isolate a sensitive IAM workflow from other network traffic to prevent unauthorized access or data exfiltration, placing it in a separate VPC with restrictive security groups and network ACLs would be correct. For example, if the concern is that the IAM workflow might be accessed from compromised instances in other VPCs.
Why candidates choose this
Candidates may think that network isolation (VPC, security groups) can enforce security policies for IAM operations, confusing network-level controls with identity-based access controls.
Analysis generated from the official SAA-C03blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse detective controls (like CloudTrail alerts) with preventive controls (like permissions boundaries), leading them to choose option C, which only alerts after a violation has already occurred.
Detailed technical explanation
How to think about this question
Permissions boundaries in AWS IAM are a feature that allows you to set the maximum permissions that an identity-based policy can grant to an IAM entity (user or role). When a permissions boundary is attached to a role, the effective permissions are the intersection of the boundary and the role's identity-based policies. In this scenario, the `iam:PermissionsBoundary` condition key in the trust policy of the delegated role (AppProvisioner) ensures that any role created by that workflow must include the specified boundary, effectively capping the permissions to the approved set. This is a preventive control that enforces the principle of least privilege at scale.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.
Quick reference
Cloud Service Model Comparison
Model
You Manage
Provider Manages
Examples
IaaS
OS, runtime, apps, data
Hardware, hypervisor, networking
EC2, Azure VMs, GCP Compute Engine
PaaS
Apps and data
OS, runtime, middleware, hardware
Elastic Beanstalk, Azure App Service
SaaS
Data and settings only
Everything else
Microsoft 365, Salesforce, Workday
FaaS / Serverless
Function code only
Infra, scaling, runtime
Lambda, Azure Functions, Cloud Run
CaaS
Containers and apps
Kubernetes, OS, hardware
EKS, AKS, GKE
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Design Secure Architectures — This question tests Design Secure Architectures — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Attach a permissions boundary strategy to the delegated workflow and require every created role to include that boundary using the iam:PermissionsBoundary condition. — Option B is correct because it uses a permissions boundary to enforce the maximum permission set that any developer-created role can have. By attaching a permissions boundary to the delegated workflow and using the `iam:PermissionsBoundary` condition in the trust policy, every role created by developers is automatically constrained to the approved boundary, preventing any role from exceeding the approved permission set even if the developer tries to attach additional policies.
What should I do if I get this SAA-C03 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This SAA-C03 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SAA-C03 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.