├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cloudformation_files ├── etl_automation.yaml └── redshift.yaml ├── config └── buildspec.yml └── src ├── Dockerfile └── dbt-project ├── README.md ├── analysis └── .gitkeep ├── data └── .gitkeep ├── dbt_project.yml ├── macros └── .gitkeep ├── models └── example │ ├── top_customers.sql │ └── top_nations.sql ├── packages.yml ├── profiles.yml ├── run-dbt.sh └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/README.md -------------------------------------------------------------------------------- /cloudformation_files/etl_automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/cloudformation_files/etl_automation.yaml -------------------------------------------------------------------------------- /cloudformation_files/redshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/cloudformation_files/redshift.yaml -------------------------------------------------------------------------------- /config/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/config/buildspec.yml -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/dbt-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/README.md -------------------------------------------------------------------------------- /src/dbt-project/analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt-project/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt-project/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/dbt_project.yml -------------------------------------------------------------------------------- /src/dbt-project/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt-project/models/example/top_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/models/example/top_customers.sql -------------------------------------------------------------------------------- /src/dbt-project/models/example/top_nations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/models/example/top_nations.sql -------------------------------------------------------------------------------- /src/dbt-project/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/packages.yml -------------------------------------------------------------------------------- /src/dbt-project/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/profiles.yml -------------------------------------------------------------------------------- /src/dbt-project/run-dbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/redshift-etl-automation-with-dbt/HEAD/src/dbt-project/run-dbt.sh -------------------------------------------------------------------------------- /src/dbt-project/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------