mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-28 18:38:17 +00:00
docs(ingest/athena): update recipe with aws key pair example (#12076)
This commit is contained in:
parent
ff7ac48021
commit
becf51575e
@ -181,7 +181,7 @@
|
||||
"displayName": "Athena",
|
||||
"description": "Import Schemas, Tables, Views, and lineage to S3 from Athena.",
|
||||
"docsUrl": "https://datahubproject.io/docs/generated/ingestion/sources/athena/",
|
||||
"recipe": "source:\n type: athena\n config:\n # Coordinates\n aws_region: my_aws_region\n work_group: primary\n\n # Options\n s3_staging_dir: \"s3://my_staging_athena_results_bucket/results/\""
|
||||
"recipe": "source:\n type: athena\n config:\n # AWS Keys (Optional - Required only if local aws credentials are not set)\n username: aws_access_key_id\n password: aws_secret_access_key\n # Coordinates\n aws_region: my_aws_region\n work_group: primary\n\n # Options\n s3_staging_dir: \"s3://my_staging_athena_results_bucket/results/\""
|
||||
},
|
||||
{
|
||||
"urn": "urn:li:dataPlatform:clickhouse",
|
||||
|
||||
@ -1,6 +1,11 @@
|
||||
source:
|
||||
type: athena
|
||||
config:
|
||||
|
||||
# AWS Keys (Optional - Required only if local aws credentials are not set)
|
||||
username: my_aws_access_key_id
|
||||
password: my_aws_secret_access_key
|
||||
|
||||
# Coordinates
|
||||
aws_region: my_aws_region
|
||||
work_group: primary
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user