├── Flowcharts.png ├── README.md ├── gsd_photo.png ├── main.tf ├── pt.py ├── pt_deployment.py ├── terraform.tfstate ├── terraform.tfstate.backup ├── tf_destroy_bash.sh ├── tf_make_bash.sh └── variables.tf /Flowcharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/Flowcharts.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/README.md -------------------------------------------------------------------------------- /gsd_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/gsd_photo.png -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/main.tf -------------------------------------------------------------------------------- /pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/pt.py -------------------------------------------------------------------------------- /pt_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/pt_deployment.py -------------------------------------------------------------------------------- /terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/terraform.tfstate -------------------------------------------------------------------------------- /terraform.tfstate.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/terraform.tfstate.backup -------------------------------------------------------------------------------- /tf_destroy_bash.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | { bash passcode.sh; } | terraform destroy -auto-approve 3 | -------------------------------------------------------------------------------- /tf_make_bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/tf_make_bash.sh -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickyriled/data_engineering_project_1/HEAD/variables.tf --------------------------------------------------------------------------------