Just getting started with DynamoDB from Amazon. I'm planning to have clients directly access DynamoDB thorugh an JS Clientside APP which is running over https.
Thus I was wondering whether DynamoDB is supporting SSL?
Are custom vanity domains (through CNAME and SNI Certificate like CloudFront) supportet as well?
This question raises many related questions for me; some answers I've found:
Which version of SSL/TLS? AWS documents that DynamoDB uses TLS 1.2 or TLS 1.3 (the latter was added since this answer was first written): https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/network-isolation.html
Is TLS required out of the box? (TL;DR: no) AWS doesn't document this, exactly. There are plain HTTP endpoints as well as HTTPS endpoints. It seems that HTTP is directly usable if requested, as the following AWS CLI command worked, gave the same output as HTTPS, and the debug logs indicated plain HTTP was used:
aws dynamodb --debug --endpoint-url http://dynamodb.us-east-1.amazonaws.com list-tables
As far as I can tell, this leaves the only options to absolutely guarantee encryption-in-transit as:
As a final note, the part about vanity names is quite distinct in my opinion and should be asked separately. I would guess it isn't possible, though, because DynamoDB API requests have to be signed and the signature has to include the endpoint URL, however there's no way to configure DynamoDB to recognize endpoints other than the official ones.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With