diff options
Diffstat (limited to 'external/sshkeys')
-rw-r--r-- | external/sshkeys/README.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/external/sshkeys/README.rst b/external/sshkeys/README.rst index f770e4bf..73b136d6 100644 --- a/external/sshkeys/README.rst +++ b/external/sshkeys/README.rst @@ -25,13 +25,13 @@ the `sshkeys::keymaster` class on the puppet master node:: include sshkeys::keymaster Before installing the key, we need to create it. This is done with the -`create_key` ressource, on the puppet master node. We can create the key +`create_key` resource, on the puppet master node. We can create the key `key1`:: sshkeys::create_key{key1: } If we want to install the `key1` key pair for user `user1`, we can use -the `set_client_key_pair` ressource:: +the `set_client_key_pair` resource:: sshkeys::set_client_key_pair{'key1-for-user1': keyname => 'key1', @@ -40,10 +40,10 @@ the `set_client_key_pair` ressource:: } The `key1` private and public keys should now be installed for user -`user1` on the node on which we created this ressource. +`user1` on the node on which we created this resource. If we want to allow the key `key1` to connect to the `user2` account, -we use the `set_authorized_keys` ressource:: +we use the `set_authorized_keys` resource:: sshkeys::set_authorized_keys{'key1-to-user2': keyname => 'key1', |