Table of Contents
To install all edwh related plugins
pipx install edwh[plugins,omgeving]
To only install edwh sshkey plugin
pipx install edwh[sshkey]
example for [email protected]
edwh sshkey.generate --message={message} --owner=ubuntu --hostname=user --goal=nl
possible arguments for ew sshkey.generate
:
- message: REQUIRED, message to give with the generated key
- owner: owner of the server you are generating a key for
- hostname: hostname of the server you are generating the key for
- goal: What is the goal to use this key for, for example: 'production' or 'testing'
you atleast need to give this function 2-3 parameters and a message else it will not work.
example for [email protected]
edwh sshkey.add-to-remote -H [email protected] --keys_to_remote=owner-hostname-goal
possible arguments for ew sshkey.add-to-remote
:
- keys_to_remote: all saved keys you want to add to the remote
The delete_remote function is used to remove specified SSH keys from a remote machine. The function takes in an iterable of keys to be removed and a Connection object.
edwh sshkey.delete-remote -H [email protected] --keys_to_remote=owner-hostname-doel
possible arguments for ew delete_remote
:
- keys_to_remote: An iterable of keys to be removed from the remote machine. If a string is provided, it is converted into a list with one element.
The function retrieves all key information from the keyholder and checks if the command line key is present in the key information. If it is, the function retrieves the SSH key and removes it from the authorized_keys file on the remote machine. After successfully removing the key, the function prints a success message indicating that the specified key has been removed.
edwh sshkey.list -H [email protected]
this list all found known and unknown keys on the local or remote server.
edwh-sshkey-plugin
is distributed under the terms of the MIT license.