OpenMetadata/ingestion/examples/workflows/dynamodb.json
2022-04-18 17:38:34 +02:00

35 lines
No EOL
778 B
JSON

{
"source": {
"type": "dynamodb",
"serviceName": "local_dynamodb",
"serviceConnection": {
"config": {
"awsAccessKeyId": "aws_access_key_id",
"awsSecretAccessKey": "aws_secret_access_key",
"awsRegion": "us-east-2",
"hostPort": "https://dynamodb.us-east-2.amazonaws.com",
"database": "custom_database_name"
}
},
"sourceConfig": {
"config": {
"enableDataProfiler": false,
"tableFilterPattern": {
"includes": [
""
]
}
}
}
},
"sink": {
"type": "metadata-rest",
"config": {}
},
"workflowConfig": {
"openMetadataServerConfig": {
"hostPort": "http://localhost:8585/api",
"authProvider": "no-auth"
}
}
}