Configuring your bucket to use an S3 Bucket Key with SSE-KMS for new objects
When you configure server-side encryption with AWS Key Management Service (AWS KMS) keys (SSE-KMS), you can configure your bucket to use an S3 Bucket Key for SSE-KMS on new objects. S3 Bucket Keys decrease the request traffic from Amazon S3 to AWS KMS and reduce the cost of SSE-KMS. For more information, see Reducing the cost of SSE-KMS with Amazon S3 Bucket Keys.
You can configure your bucket to use an S3 Bucket Key for SSE-KMS on new objects by using
the Amazon S3 console, REST API, AWS SDKs, AWS Command Line Interface (AWS CLI), or AWS CloudFormation. If you want to enable or
disable an S3 Bucket Key for existing objects, you can use a CopyObject
operation. For
more information, see Configuring an S3 Bucket Key at the object
level and Using Batch Operations to enable S3 Bucket Keys for
SSE-KMS.
When an S3 Bucket Key is enabled for the source or destination bucket, the encryption
context will be the bucket Amazon Resource Name (ARN) and not the object ARN, for example,
arn:aws:s3:::
. You need to update your
IAM policies to use the bucket ARN for the encryption context. For more information, see
S3 Bucket Keys and replication.bucket_ARN
The following examples illustrate how an S3 Bucket Key works with replication. For more information, see Replicating encrypted objects (SSE-S3, SSE-KMS, DSSE-KMS, SSE-C).
Prerequisites
Before you configure your bucket to use an S3 Bucket Key, review Changes to note before enabling an S3 Bucket Key.
Topics
In the S3 console, you can enable or disable an S3 Bucket Key for a new or existing bucket. Objects in the S3 console inherit their S3 Bucket Key setting from the bucket configuration. When you enable an S3 Bucket Key for your bucket, new objects that you upload to the bucket use an S3 Bucket Key for SSE-KMS.
Uploading, copying, or modifying objects in buckets that have an S3 Bucket Key enabled
If you upload, modify, or copy an object in a bucket that has an S3 Bucket Key enabled, the S3 Bucket Key settings for that object might be updated to align with the bucket configuration.
If an object already has an S3 Bucket Key enabled, the S3 Bucket Key settings for that object don't change when you copy or modify the object. However, if you modify or copy an object that doesn’t have an S3 Bucket Key enabled, and the destination bucket has an S3 Bucket Key configuration, the object inherits the destination bucket's S3 Bucket Key settings. For example, if your source object doesn't have an S3 Bucket Key enabled but the destination bucket has S3 Bucket Key enabled, an S3 Bucket Key is enabled for the object.
To enable an S3 Bucket Key when you create a new bucket
Sign in to the AWS Management Console and open the Amazon S3 console at https://console.aws.amazon.com/s3/
. -
In the left navigation pane, choose Buckets.
-
Choose Create bucket.
-
Enter your bucket name, and choose your AWS Region.
-
Under Default encryption, for Encryption key type, choose AWS Key Management Service key (SSE-KMS).
-
Under AWS KMS key, do one of the following to choose your KMS key:
-
To choose from a list of available KMS keys, choose Choose from your AWS KMS keys, and then choose your KMS key from the list of available keys.
Both the AWS managed key (
aws/s3
) and your customer managed keys appear in this list. For more information about customer managed keys, see Customer keys and AWS keys in the AWS Key Management Service Developer Guide. -
To enter the KMS key ARN, choose Enter AWS KMS key ARN, and enter your KMS key ARN in the field that appears.
-
To create a new customer managed key in the AWS KMS console, choose Create a KMS key.
For more information about creating an AWS KMS key, see Creating Keys in the AWS Key Management Service Developer Guide.
-
-
Under Bucket Key, choose Enable.
-
Choose Create bucket.
Amazon S3 creates your bucket with an S3 Bucket Key enabled. New objects that you upload to the bucket will use an S3 Bucket Key.
To disable an S3 Bucket Key, follow the previous steps, and choose Disable.
To enable an S3 Bucket Key for an existing bucket
Open the Amazon S3 console at https://console.aws.amazon.com/s3/
. -
In the left navigation pane, choose Buckets.
-
In the Buckets list, choose the bucket that you want to enable an S3 Bucket Key for.
-
Choose the Properties tab.
-
Under Default encryption, choose Edit.
-
Under Default encryption, for Encryption key type, choose AWS Key Management Service key (SSE-KMS).
-
Under AWS KMS key, do one of the following to choose your KMS key:
-
To choose from a list of available KMS keys, choose Choose from your AWS KMS keys, and then choose your KMS key from the list of available keys.
Both the AWS managed key (
aws/s3
) and your customer managed keys appear in this list. For more information about customer managed keys, see Customer keys and AWS keys in the AWS Key Management Service Developer Guide. -
To enter the KMS key ARN, choose Enter AWS KMS key ARN, and enter your KMS key ARN in the field that appears.
-
To create a new customer managed key in the AWS KMS console, choose Create a KMS key.
For more information about creating an AWS KMS key, see Creating Keys in the AWS Key Management Service Developer Guide.
-
-
Under Bucket Key, choose Enable.
-
Choose Save changes.
Amazon S3 enables an S3 Bucket Key for new objects added to your bucket. Existing objects don't use the S3 Bucket Key. To configure an S3 Bucket Key for existing objects, you can use a
CopyObject
operation. For more information, see Configuring an S3 Bucket Key at the object level .To disable an S3 Bucket Key, follow the previous steps, and choose Disable.
You can use PutBucketEncryption to
enable or disable an S3 Bucket Key for your bucket. To configure an S3 Bucket Key with
PutBucketEncryption
, use the ServerSideEncryptionRule data type, which includes default encryption with
SSE-KMS. You can also optionally use a customer managed key by specifying the KMS key ID for the
customer managed key.
For more information and example syntax, see PutBucketEncryption.
The following example enables default bucket encryption with SSE-KMS and an S3 Bucket Key by using the AWS SDK for Java.
The following example enables default bucket encryption with SSE-KMS and an
S3 Bucket Key by using the AWS CLI. Replace the
with your own information.user input
placeholders
aws s3api put-bucket-encryption --bucket
amzn-s3-demo-bucket
--server-side-encryption-configuration '{ "Rules": [ { "ApplyServerSideEncryptionByDefault": { "SSEAlgorithm": "aws:kms", "KMSMasterKeyID": "KMS-Key-ARN
" }, "BucketKeyEnabled": true } ] }'
For more information about configuring an S3 Bucket Key with AWS CloudFormation, see AWS::S3::Bucket ServerSideEncryptionRule in the AWS CloudFormation User Guide.