ansible-playground/slococo/playground/roles/ssh_config/README.md

39 lines
822 B
Markdown

Role Name
=========
An Ansible Role to manage SSH configuration on Linux systems.
## Requirements
- Ansible 2.12.0 or later
- This role requires elevated privileges. Make sure to set `become: true` when using this role.
- `community.crypto` collection
## Role Variables
```yaml
options:
PasswordAuthentication: 'yes' # Allow password authentication (default: yes)
PermitEmptyPasswords: 'no' # Permit users to have empty passwords (default: no)
PermitRootLogin: 'no' # Permit root login (default: no)
# Add more SSH options as needed
```
Example Playbook
----------------
```yaml
- hosts: servers
vars:
sshd_options:
PasswordAuthentication: 'no'
roles:
- { role: slococo.playground.ssh_config, become: true }
```
License
-------
MIT