can someone help me on how to enable a server side encryption to DynamoDB using yaml
1 Answer
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
1 Comment
Anusha Anu
thanks @Marcin... and also is there a role going to access them have permissions to encrypt and decrypt