Database Access
Database Guide
DynamoDB Access
Secure DynamoDB access with TigerAccess.
Estimated time: 10 minutes
1
Register DynamoDB
tacctl create -f - <<EOF
kind: db
metadata:
name: prod-dynamodb
spec:
protocol: dynamodb
aws:
region: us-east-1
account_id: "123456789012"
EOF2
Connect to DynamoDB
# Use AWS CLI through TigerAccess
tac aws dynamodb list-tables
# Or use local proxy
tac proxy db prod-dynamodb -p 8000 &
aws dynamodb list-tables --endpoint-url http://localhost:8000DynamoDB Access Configured
Your DynamoDB tables are now accessible through TigerAccess.