SAA-C03 Design Secure Architectures Practice Question
This SAA-C03 practice question tests your understanding of design secure architectures. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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
Application log excerpt:
2026-04-11T09:14:22Z ERROR S3 GetObject failed: AccessDenied
2026-04-11T09:14:22Z ERROR KMS Decrypt failed for key arn:aws:kms:us-east-1:111122223333:key/abcd-1234
Current setup:
- S3 bucket default encryption: SSE-KMS
- EC2 application role: AppServerRole
- Bucket policy allows s3:GetObject for AppServerRole
- KMS key policy currently allows only the account root principal
- No direct KMS permissions are attached to AppServerRole
Based on the exhibit, what is the most appropriate change to restore application access while keeping encryption at rest with customer-managed KMS controls?
Exhibit
Application log excerpt:
2026-04-11T09:14:22Z ERROR S3 GetObject failed: AccessDenied
2026-04-11T09:14:22Z ERROR KMS Decrypt failed for key arn:aws:kms:us-east-1:111122223333:key/abcd-1234
Current setup:
- S3 bucket default encryption: SSE-KMS
- EC2 application role: AppServerRole
- Bucket policy allows s3:GetObject for AppServerRole
- KMS key policy currently allows only the account root principal
- No direct KMS permissions are attached to AppServerRole
A
Change the bucket to SSE-S3 so the application no longer depends on KMS permissions.
Why wrong: This would remove KMS from the path, but it also removes customer-managed key control, which the requirement explicitly wants to keep.
B
Update the KMS key policy or add a grant so AppServerRole can use the key for decrypt and data key operations.
For SSE-KMS objects, the caller needs permission to use the KMS key as well as S3 permissions. The role already has S3 access, but KMS is denying Decrypt because the key policy does not allow the role. Adding the role through the key policy or a grant, together with the needed KMS actions, resolves the failure while preserving customer-managed encryption.
C
Move the EC2 instance into the same Availability Zone as the S3 bucket to reduce encryption errors.
Why wrong: S3 is a regional service and does not depend on the instance being in a specific Availability Zone for KMS access.
D
Attach AmazonS3FullAccess to the application role so S3 can bypass KMS authorization.
Why wrong: S3 permissions do not bypass KMS authorization for SSE-KMS objects. The decrypt call is still evaluated by KMS.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Update the KMS key policy or add a grant so AppServerRole can use the key for decrypt and data key operations.
The application is failing because AppServerRole lacks the necessary permissions to use the customer-managed KMS key for decrypting S3 objects. By updating the KMS key policy or adding a grant to allow the role to perform `kms:Decrypt` and `kms:GenerateDataKey` operations, you restore access while maintaining encryption at rest with customer-managed KMS controls.
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.
✗
Change the bucket to SSE-S3 so the application no longer depends on KMS permissions.
Why it's wrong here
This would remove KMS from the path, but it also removes customer-managed key control, which the requirement explicitly wants to keep.
When this WOULD be correct
If the question required removing dependency on KMS permissions and allowed using AWS-managed keys, switching to SSE-S3 would simplify access without encryption errors.
✓
Update the KMS key policy or add a grant so AppServerRole can use the key for decrypt and data key operations.
Why this is correct
For SSE-KMS objects, the caller needs permission to use the KMS key as well as S3 permissions. The role already has S3 access, but KMS is denying Decrypt because the key policy does not allow the role. Adding the role through the key policy or a grant, together with the needed KMS actions, resolves the failure while preserving customer-managed encryption.
Related concept
Read the scenario before looking for a memorised answer.
✗
Move the EC2 instance into the same Availability Zone as the S3 bucket to reduce encryption errors.
Why it's wrong here
S3 is a regional service and does not depend on the instance being in a specific Availability Zone for KMS access.
When this WOULD be correct
This option would be correct in a scenario where the application is experiencing high latency or data transfer costs due to cross-AZ data retrieval from S3, and the question asks for a change to reduce latency or cost while maintaining encryption at rest.
✗
Attach AmazonS3FullAccess to the application role so S3 can bypass KMS authorization.
Why it's wrong here
S3 permissions do not bypass KMS authorization for SSE-KMS objects. The decrypt call is still evaluated by KMS.
When this WOULD be correct
This option would be correct if the question stated that the application needs full S3 access and encryption is not a concern (e.g., using SSE-S3 or no encryption), and the issue is a missing S3 permission rather than a KMS permission.
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.
✓Update the KMS key policy or add a grant so AppServerRole can use the key for decrypt and data key operations.Correct answer▾
Why this is correct
For SSE-KMS objects, the caller needs permission to use the KMS key as well as S3 permissions. The role already has S3 access, but KMS is denying Decrypt because the key policy does not allow the role. Adding the role through the key policy or a grant, together with the needed KMS actions, resolves the failure while preserving customer-managed encryption.
✗Change the bucket to SSE-S3 so the application no longer depends on KMS permissions.Wrong answer — click to see why▾
Why this is wrong here
Changing to SSE-S3 removes customer-managed KMS controls, violating the requirement to keep encryption at rest with customer-managed KMS.
★ When this WOULD be the correct answer
If the question required removing dependency on KMS permissions and allowed using AWS-managed keys, switching to SSE-S3 would simplify access without encryption errors.
Why candidates choose this
Candidates may think SSE-S3 eliminates KMS permission issues, overlooking the explicit requirement for customer-managed KMS controls.
✗Move the EC2 instance into the same Availability Zone as the S3 bucket to reduce encryption errors.Wrong answer — click to see why▾
Why this is wrong here
Moving the EC2 instance into the same Availability Zone as the S3 bucket does not resolve encryption errors related to KMS permissions, as S3 is a regional service and Availability Zone placement does not affect KMS authorization.
★ When this WOULD be the correct answer
This option would be correct in a scenario where the application is experiencing high latency or data transfer costs due to cross-AZ data retrieval from S3, and the question asks for a change to reduce latency or cost while maintaining encryption at rest.
Why candidates choose this
Candidates may mistakenly believe that S3 operations are affected by network proximity at the AZ level, or confuse S3 with services like EC2 or EBS where AZ placement impacts performance and errors.
✗Attach AmazonS3FullAccess to the application role so S3 can bypass KMS authorization.Wrong answer — click to see why▾
Why this is wrong here
Attaching AmazonS3FullAccess does not bypass KMS authorization; S3 still requires KMS permissions to decrypt objects encrypted with customer-managed KMS keys, so the application would still fail.
★ When this WOULD be the correct answer
This option would be correct if the question stated that the application needs full S3 access and encryption is not a concern (e.g., using SSE-S3 or no encryption), and the issue is a missing S3 permission rather than a KMS permission.
Why candidates choose this
Candidates may think that granting full S3 access overrides all other permissions, not realizing that KMS has its own authorization layer that must be satisfied separately.
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 assume S3 bucket policies alone control access to encrypted objects, forgetting that SSE-KMS requires separate KMS key permissions that must be explicitly granted to the IAM role or user.
Detailed technical explanation
How to think about this question
When using SSE-KMS, S3 calls KMS to decrypt objects on behalf of the requester, requiring the IAM role to have `kms:Decrypt` and `kms:GenerateDataKey` permissions on the specific KMS key. The KMS key policy can be updated to grant these actions to the AppServerRole, or a KMS grant can be created for temporary, scoped access. Without these permissions, S3 returns a 403 Access Denied error even if the S3 bucket policy allows access.
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 media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.
Quick reference
AWS S3 Storage Class Comparison
Storage Class
Min Duration
Retrieval
Use Case
S3 Standard
None
Immediate
Frequently accessed data
S3 Standard-IA
30 days
Immediate
Infrequent access, rapid retrieval
S3 One Zone-IA
30 days
Immediate
Non-critical infrequent data
S3 Intelligent-Tiering
None
Immediate–hours
Unknown or changing access patterns
S3 Glacier Instant
90 days
Milliseconds
Archive with instant retrieval
S3 Glacier Flexible
90 days
Minutes–hours
Archive, flexible retrieval
S3 Glacier Deep Archive
180 days
Hours
Long-term compliance archive
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: Update the KMS key policy or add a grant so AppServerRole can use the key for decrypt and data key operations. — The application is failing because AppServerRole lacks the necessary permissions to use the customer-managed KMS key for decrypting S3 objects. By updating the KMS key policy or adding a grant to allow the role to perform `kms:Decrypt` and `kms:GenerateDataKey` operations, you restore access while maintaining encryption at rest with customer-managed KMS controls.
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.