diff --git a/infrastructure/quick-deploy/aws/Makefile b/infrastructure/quick-deploy/aws/Makefile index 4ada99b06..ee378e2c0 100644 --- a/infrastructure/quick-deploy/aws/Makefile +++ b/infrastructure/quick-deploy/aws/Makefile @@ -79,6 +79,9 @@ delete: hibernate: terraform destroy -var-file=$(VERSIONS_FILE) -var-file=$(PARAMETERS_FILE) -var-file=$(EXTRA_PARAMETERS_FILE) -auto-approve -target=module.vpc -target=module.eks -target=module.mq -target=module.s3_os -target=module.elasticache +console: + terraform console -var-file=$(VERSIONS_FILE) -var-file=$(PARAMETERS_FILE) -var-file=$(EXTRA_PARAMETERS_FILE) + state-pull: terraform state pull diff --git a/infrastructure/quick-deploy/gcp/Makefile b/infrastructure/quick-deploy/gcp/Makefile index 0a7ce1ab0..f8d3d383e 100644 --- a/infrastructure/quick-deploy/gcp/Makefile +++ b/infrastructure/quick-deploy/gcp/Makefile @@ -90,6 +90,9 @@ delete: hibernate: terraform destroy -var-file=$(VERSIONS_FILE) -var-file=$(PARAMETERS_FILE) -var-file=$(EXTRA_PARAMETERS_FILE) -auto-approve -target=module.vpc -target=module.gke -target=module.gcs_os -target=module.memorystore +console: + terraform console -var-file=$(VERSIONS_FILE) -var-file=$(PARAMETERS_FILE) -var-file=$(EXTRA_PARAMETERS_FILE) + output: @terraform output -state=$(STATE_FILE) -json | jq 'map_values(.value)' > $(OUTPUT_FILE) @echo "\nOUTPUT FILE: $(OUTPUT_FILE)" diff --git a/infrastructure/quick-deploy/localhost/Makefile b/infrastructure/quick-deploy/localhost/Makefile index af1007ec6..8d13f292c 100644 --- a/infrastructure/quick-deploy/localhost/Makefile +++ b/infrastructure/quick-deploy/localhost/Makefile @@ -43,6 +43,9 @@ refresh: delete: terraform destroy -var-file=$(VERSIONS_FILE) -var-file=$(PARAMETERS_FILE) -var-file=$(EXTRA_PARAMETERS_FILE) -auto-approve +console: + terraform console -var-file=$(VERSIONS_FILE) -var-file=$(PARAMETERS_FILE) -var-file=$(EXTRA_PARAMETERS_FILE) + state-pull: terraform state pull