An open API service indexing awesome lists of open source software.

https://github.com/savoirfairelinux/ansible-ssh-access

Facilitates SSH access from one remote to other(s)
https://github.com/savoirfairelinux/ansible-ssh-access

Last synced: 4 months ago
JSON representation

Facilitates SSH access from one remote to other(s)

Awesome Lists containing this project

README

        

# ssh-access

Facilitates SSH access from one remote to other(s). This role first creates a private key on a
remote hosts, and then propagates that key's public key to specified hosts (must be in the
inventory) `authorized_keys`.

## Requirements

* Ansible 2.0+

## Example invocation

```
- role: ssh-access
ssh_access_username: myuser
ssh_access_targets:
- host: host1
username: user1
- host: host2
username: user2
```