1
0
Fork 0

Add README for sshd role

This commit is contained in:
Daniele Tricoli 2021-01-02 20:35:21 +01:00
parent fecde9e1df
commit 3768eedd7c
1 changed files with 21 additions and 0 deletions

21
roles/sshd/README.md Normal file
View File

@ -0,0 +1,21 @@
# sshd
Installs and configures openssh server.
## Role variables
* `sshd_become` - Default: true. Enable/disable the Ansible become
functionality.
* `sshd_become_user` - Default: root. When using become functionality for
privilege escalation, this is the user with desired privileges you become.
* `sshd_port` - Default: 22. The port openssh server listen to.
## Example playbook
```yaml
- hosts: my-server
vars:
sshd_port: 1234
roles:
- eriol.kit.sshd
```