diff --git a/README.md b/README.md index c786991..1895474 100644 --- a/README.md +++ b/README.md @@ -61,4 +61,7 @@ gcloud compute networks subnets update default \ gcloud dataproc workflow-templates instantiate liquor-etl-workflow \ - --region us-central1 \ No newline at end of file + --region us-central1 + + + gcloud dataproc workflow-templates delete liquor-store-etl-workflow --region=us-central1 \ No newline at end of file diff --git a/main.tf b/main.tf index 0a5a2c7..1638cc4 100644 --- a/main.tf +++ b/main.tf @@ -57,11 +57,3 @@ resource "google_dataproc_workflow_template" "template" { } } -# Update Google Cloud subnet for private IP access -resource "google_compute_subnetwork" "default_subnetwork" { - name = "default" - region = "us-central1" - network = "default" - - private_ip_google_access = true -}