DynamoDbTableKmsKey:
Type: AWS::KMS::Key
Table1:
Type: AWS::DynamoDB::Table
Properties:
SSESpecification:
SSEEnabled: True
SSEType: KMS
KMSMasterKeyId: !Ref DynamoDbTableKmsKey
Table2:
Type: AWS::DynamoDB::Table
Properties:
SSESpecification:
SSEEnabled: True
SSEType: KMS
KMSMasterKeyId: !Ref DynamoDbTableKmsKey
I've been looking on the aws documentation but I cannot see if it is not a good idea or a good practice or if it is possible.
Thank you very much