Terraform aws provider is not supporting dynamodb table with customer managed key , Aws added --sse-specification Enabled=true,SSEType=KMS,KMSMasterKeyId=KMSKEYID #11234
Labels
enhancement
Requests to existing resources that expand the functionality or scope.
For Dynamodb table Aws is supporting Encryption at Rest and introduced field as KMS - Customer managed CMK
But terraform only have enable field present for KMS.
server_side_encryption {
enabled = true
}
AWS cli command with KMS : --sse-specification Enabled=true,SSEType=KMS,KMSMasterKeyId=KMSKEYID
When terraform will support Customer managed CMK
Need support in terraform provider for attribute SSEType=KMS,KMSMasterKeyId=KMSKEYID
The text was updated successfully, but these errors were encountered: