Skip to content

Commit

Permalink
docs(ingest/athena): update recipe with aws key pair example (#12076)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurinehate authored Dec 11, 2024
1 parent ff7ac48 commit becf515
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
5 changes: 5 additions & 0 deletions metadata-ingestion/docs/sources/athena/athena_recipe.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit becf515

Please sign in to comment.