DESCRIPTION
gcloud compute instances remove-tags
is used to remove tags to Google Compute Engine virtual
machine instances. For example:
$ gcloud compute instances remove-tags example-instance --tags tag-1 \
tag-2
will remove tags tag-1
and tag-2
from the existing tags of
example-instance
.
Tags can be used to identify instances when adding network
firewall rules. Tags can also be used to get firewall rules that already
exist to be applied to the instance. See
gcloud compute firewall-rules create
(1) for more details.