How to remove all authorized network in Cloud SQL in GCP
Show all existing authorized addresses by describing the instance:
gcloud sql instances describe INSTANCE_NAME
To remove all authorized networks, use the following command
gcloud sql instances patch INSTANCE_NAME --clear-authorized-networks
No comments