1

can someone help me on how to enable a server side encryption to DynamoDB using yaml

1 Answer 1

2

DynamoDB is encrypted at rest by default. Thus there is nothing to enable, nor you can't disable it:

All user data stored in Amazon DynamoDB is fully encrypted at rest.

However, if you don't want to use AWS owned customer master key (CMK) for encryption, you can use your own CMK from KMS.

To specity your own key there is SSESpecification option in CloudFormation:

SSESpecification:
  KMSMasterKeyId: <your-kms-key-id>
  SSEEnabled: true
  SSEType: KMS
Sign up to request clarification or add additional context in comments.

1 Comment

thanks @Marcin... and also is there a role going to access them have permissions to encrypt and decrypt

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.