generated from meltano/basic-python-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Mindaugas Nižauskas <mindaugas.nizauskas@dealfront.com>
- Loading branch information
1 parent
4ce4a9b
commit c4b9b12
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Athena config reference: https://github.com/dbt-athena/dbt-athena?tab=readme-ov-file#configuring-your-profile | ||
# | ||
# Warning: Do not store credentials in this file unless you've take the necessary steps to remove | ||
# this file from your git commit. | ||
config: | ||
send_anonymous_usage_stats: False | ||
use_colors: True | ||
meltano: | ||
target: "{{ env_var('MELTANO_ENVIRONMENT', 'dev') }}" # The default profile name if no other profile is selected. | ||
outputs: | ||
# TODO: Optionally, revise or add to these profiles to reflect your own environments. Meltano adds dev, staging and prod by default. | ||
dev: | ||
type: athena | ||
s3_staging_dir: "{{ env_var('DBT_ATHENA_S3_STAGING_DIR') }}" | ||
s3_data_dir: "{{ env_var('DBT_ATHENA_S3_DATA_DIR') }}" | ||
region_name: "{{ env_var('DBT_ATHENA_REGION_NAME') }}" | ||
schema: "{{ env_var('DBT_ATHENA_SCHEMA') }}" | ||
database: "{{ env_var('DBT_ATHENA_DATABASE') }}" | ||
work_group: "{{ env_var('DBT_ATHENA_WORK_GROUP') }}" | ||
staging: | ||
type: athena | ||
s3_staging_dir: "{{ env_var('DBT_ATHENA_S3_STAGING_DIR') }}" | ||
s3_data_dir: "{{ env_var('DBT_ATHENA_S3_DATA_DIR') }}" | ||
region_name: "{{ env_var('DBT_ATHENA_REGION_NAME') }}" | ||
schema: "{{ env_var('DBT_ATHENA_SCHEMA') }}" | ||
database: "{{ env_var('DBT_ATHENA_DATABASE') }}" | ||
work_group: "{{ env_var('DBT_ATHENA_WORK_GROUP') }}" | ||
prod: | ||
type: athena | ||
s3_staging_dir: "{{ env_var('DBT_ATHENA_S3_STAGING_DIR') }}" | ||
s3_data_dir: "{{ env_var('DBT_ATHENA_S3_DATA_DIR') }}" | ||
region_name: "{{ env_var('DBT_ATHENA_REGION_NAME') }}" | ||
schema: "{{ env_var('DBT_ATHENA_SCHEMA') }}" | ||
database: "{{ env_var('DBT_ATHENA_DATABASE') }}" | ||
work_group: "{{ env_var('DBT_ATHENA_WORK_GROUP') }}" |