NAME
    gcloud compute os-login ssh-keys remove - remove an SSH public key from an
        OS Login profile

SYNOPSIS
    gcloud compute os-login ssh-keys remove (--key=KEY | --key-file=KEY_FILE)
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    gcloud 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.

EXAMPLES
    To remove the key that is stored in /home/user/.ssh/id_rsa.pub, run:

        $ gcloud compute os-login ssh-keys remove \
            --key-file=/home/user/.ssh/id_rsa.pub

    To remove the key with fingerprint
    'e0d96d6fad35a61a0577f467940509b5aa08b6dea8d99456ec19a6e47126bc52', run:

        $ gcloud compute os-login ssh-keys remove \
            --key='e0d96d6fad35a61a0577f467940509b5aa08b6dea8d99456ec19a6e47\
        126bc52'

    To remove the SSH public key
    'AAAAB3NzaC1yc2EAAAADAQABAAAB...ZrPg+DZJIwPab2wPlveLh+ut1Lxs5QTR/9QfEa7',
    run:

        $ gcloud compute os-login ssh-keys remove \
            --key='AAAAB3NzaC1yc2EAAAADAQABAAAB...ZrPg+DZJIwPab2wPlveLh+ut1L\
        xs5QTR/9QfEa7'

REQUIRED FLAGS
     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.

GCLOUD WIDE FLAGS
    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.

NOTES
    These variants are also available:

        $ gcloud alpha compute os-login ssh-keys remove

        $ gcloud beta compute os-login ssh-keys remove

