Question 1,569 of 1,748
Management and Security GovernancemediumMultiple ChoiceObjective-mapped

Enforce S3 Bucket Encryption Across AWS Organization with SCP

This SCS-C02 practice question tests your understanding of management and security governance. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. A key principle to apply: aWS Config. 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.

A company uses AWS Organizations with multiple accounts and wants to ensure that all newly created S3 buckets have encryption enabled. The Security team needs a solution that automatically remediates non-compliant buckets without manual intervention. What should they do?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Enable AWS Config with the s3-bucket-server-side-encryption-enabled rule and set up automatic remediation using Systems Manager Automation.

Option C is correct because AWS Config can continuously evaluate S3 buckets against the s3-bucket-server-side-encryption-enabled rule and automatically remediate non-compliant buckets using Systems Manager Automation, requiring no manual intervention. Option A is incorrect because a service control policy (SCP) cannot enforce encryption on bucket creation; the described SCP is circular and unenforceable since it denies s3:PutBucketEncryption unless encryption is already enabled, which is impossible to satisfy at creation time.

Key principle: AWS Config

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Apply a service control policy (SCP) that denies the s3:PutBucketPublicAccessBlock and s3:PutBucketEncryption actions unless the bucket has encryption enabled.

    Why it's wrong here

    Incorrect. This SCP is circular and unenforceable; it denies s3:PutBucketEncryption unless the bucket already has encryption enabled, which cannot be satisfied when creating a bucket. SCPs cannot enforce configuration requirements on bucket creation - they only control permissions.

  • Use an S3 bucket policy that denies PutObject unless the request includes the x-amz-server-side-encryption header.

    Why it's wrong here

    This denies object uploads without encryption but does not enforce encryption at the bucket level during creation.

  • Enable AWS Config with the s3-bucket-server-side-encryption-enabled rule and set up automatic remediation using Systems Manager Automation.

    Why this is correct

    Correct. AWS Config's s3-bucket-server-side-encryption-enabled rule detects buckets without encryption, and automatic remediation using Systems Manager Automation can enable encryption on existing buckets or prevent creation of non-compliant ones through proactive rules.

    Related concept

    AWS Config

  • Create an IAM role with permissions to enforce encryption and attach it to all accounts in the organization.

    Why it's wrong here

    IAM roles do not enforce encryption on bucket creation; they grant permissions but do not set bucket properties.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Candidates often think SCPs can enforce encryption on resource creation, but SCPs only control API permissions, not resource configuration. The correct approach is reactive remediation via AWS Config and automation, not proactive denial through SCPs.

Detailed technical explanation

How to think about this question

Service control policies (SCPs) are evaluated before any IAM or resource-based policies, meaning they can block actions at the AWS Organizations level even if an IAM policy allows them. The SCP in option A uses a condition key (e.g., s3:x-amz-server-side-encryption or a bucket-level encryption condition) to deny the s3:PutBucketEncryption action unless encryption is already enabled, effectively requiring encryption at bucket creation time. This approach ensures that no unencrypted S3 bucket can be created across the entire organization, which is critical for compliance frameworks like PCI DSS or HIPAA that mandate encryption at rest.

KKey Concepts to Remember

  • AWS Config
  • Automatic Remediation

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

AWS Config

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 ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

What to study next

Got this wrong? Here's your next step.

Review aWS Config, then practise related SCS-C02 questions on the same topic to reinforce the concept.

Related practice questions

Related SCS-C02 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SCS-C02 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SCS-C02 question test?

Management and Security Governance — This question tests Management and Security Governance — AWS Config.

What is the correct answer to this question?

The correct answer is: Enable AWS Config with the s3-bucket-server-side-encryption-enabled rule and set up automatic remediation using Systems Manager Automation. — Option C is correct because AWS Config can continuously evaluate S3 buckets against the s3-bucket-server-side-encryption-enabled rule and automatically remediate non-compliant buckets using Systems Manager Automation, requiring no manual intervention. Option A is incorrect because a service control policy (SCP) cannot enforce encryption on bucket creation; the described SCP is circular and unenforceable since it denies s3:PutBucketEncryption unless encryption is already enabled, which is impossible to satisfy at creation time.

What should I do if I get this SCS-C02 question wrong?

Review aWS Config, then practise related SCS-C02 questions on the same topic to reinforce the concept.

What is the key concept behind this question?

AWS Config

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on SCS-C02

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A company has an AWS environment with multiple accounts managed under AWS Organizations. The security team wants to enforce that all newly created S3 buckets in any account have encryption enabled by default. Which approach should the security team take?

medium
  • A.Use AWS Config rules to detect unencrypted buckets and send alerts.
  • B.Enable S3 default encryption in each account's S3 settings.
  • C.Apply an IAM policy to the root user of each account to enforce bucket encryption.
  • D.Create a Service Control Policy (SCP) that denies the creation of S3 buckets without encryption.

Why D: Option D is correct because a Service Control Policy (SCP) can be applied at the organizational level to deny the creation of S3 buckets without encryption, enforcing the policy across all accounts proactively. Option A is wrong because AWS Config rules are reactive and only detect violations after buckets are created. Option B is wrong because S3 default encryption is a bucket-level setting that must be configured per bucket, not an organization-wide enforcement. Option C is wrong because IAM policies are account-specific and cannot be centrally enforced across all accounts in the organization.

Keep practising

More SCS-C02 practice questions

Last reviewed: Jun 11, 2026

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.

Loading comments…

Sign in to join the discussion.

This SCS-C02 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 SCS-C02 exam.