gcloud alpha compute os-login ssh-keys remove - remove an SSH public key from an OS Login profile
gcloud alpha compute os-login ssh-keys remove (--key=KEY | --key-file=KEY_FILE) [GCLOUD_WIDE_FLAG ...]
(ALPHA) gcloud alpha compute os-login ssh-keys remove accepts either a string containing an SSH public key or a filename for an SSH public key and removes that key from the user's OS Login profile. The key value used can either be the full SSH key or the OS Login fingerprint for that key.
To remove the key that is stored in /home/user/.ssh/id_rsa.pub, run:
$ gcloud alpha compute os-login ssh-keys remove \ --key-file=/home/user/.ssh/id_rsa.pub
To remove the key with fingerprint 'e0d96d6fad35a61a0577f467940509b5aa08b6dea8d99456ec19a6e47126bc52', run:
$ gcloud alpha compute os-login ssh-keys remove \ --key='e0d96d6fad35a61a0577f467940509b5aa08b6dea8d99456ec19a6e47\ 126bc52'
To remove the SSH public key 'AAAAB3NzaC1yc2EAAAADAQABAAAB...ZrPg+DZJIwPab2wPlveLh+ut1Lxs5QTR/9QfEa7', run:
$ gcloud alpha compute os-login ssh-keys remove \ --key='AAAAB3NzaC1yc2EAAAADAQABAAAB...ZrPg+DZJIwPab2wPlveLh+ut1L\ xs5QTR/9QfEa7'
- Exactly one of these must be specified:
- --key=KEY
The SSH public key to remove from the OS Login Profile. Key value can either be the SSH key or the OS Login fingerprint of the key.
- --key-file=KEY_FILE
The path to a file containing an SSH public key to remove from the OS Login Profile. Key value can either be the SSH key or the OS Login fingerprint of the key.
These flags are available to all commands: --access-token-file, --account, --billing-project, --configuration, --flags-file, --flatten, --format, --help, --impersonate-service-account, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
This command is currently in alpha and might change without notice. If this command fails with API permission errors despite specifying the correct project, you might be trying to access an API with an invitation-only early access allowlist. These variants are also available:
$ gcloud compute os-login ssh-keys remove
$ gcloud beta compute os-login ssh-keys remove