Removed duplicate deletion block

The static IP address is already getting deleted at line number 29. So, this deleted block was causing an error and was redundant.
pull/660/head
Parth Pandit 2021-05-07 00:01:18 -05:00 committed by GitHub
parent 79a3f79b27
commit eddc705883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -54,10 +54,3 @@ Delete the `kubernetes-the-hard-way` network VPC:
gcloud -q compute networks delete kubernetes-the-hard-way
}
```
Delete the `kubernetes-the-hard-way` compute address:
```
gcloud -q compute addresses delete kubernetes-the-hard-way \
--region $(gcloud config get-value compute/region)
```