18 lines
351 B
YAML
18 lines
351 B
YAML
---
|
|
- name: Generate SSH key
|
|
user:
|
|
name: mfocko
|
|
generate_ssh_key: yes
|
|
ssh_key_type: ed25519
|
|
ssh_key_comment: "$HOSTNAME-{{ ansible_facts['distribution'] }}"
|
|
|
|
- name: Install SSH config
|
|
template:
|
|
src: templates/ssh_config.j2
|
|
dest: ~/.ssh/config
|
|
mode: 0600
|
|
|
|
- name: Enable sshd
|
|
systemd:
|
|
name: sshd
|
|
enabled: yes
|