2022-09-04 16:12:56 +02:00
|
|
|
- name: ssh_host_ed25519_key-cert.pub
|
2022-09-02 10:12:36 +02:00
|
|
|
copy:
|
2022-09-04 16:12:56 +02:00
|
|
|
src: "host_files/{{ ansible_hostname }}/ssh_host_ed25519_key-cert.pub"
|
|
|
|
dest: "/etc/ssh/ssh_host_ed25519_key-cert.pub"
|
2022-09-02 10:12:36 +02:00
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
|
2022-09-04 16:12:56 +02:00
|
|
|
- name: ssh_host_ed25519_key.pub
|
2022-09-02 10:12:36 +02:00
|
|
|
copy:
|
2022-09-04 16:12:56 +02:00
|
|
|
src: "host_files/{{ ansible_hostname }}/ssh_host_ed25519_key.pub"
|
|
|
|
dest: "/etc/ssh/ssh_host_ed25519_key.pub"
|
2022-09-02 10:12:36 +02:00
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
|
2022-09-04 16:12:56 +02:00
|
|
|
- name: ssh_host_ed25519_key
|
2022-09-02 10:12:36 +02:00
|
|
|
copy:
|
2022-09-04 16:12:56 +02:00
|
|
|
src: "host_files/{{ ansible_hostname }}/ssh_host_ed25519_key"
|
|
|
|
dest: "/etc/ssh/ssh_host_ed25519_key"
|
2022-09-02 10:12:36 +02:00
|
|
|
mode: '0600'
|
|
|
|
owner: root
|
|
|
|
group: root
|
2022-09-02 17:01:23 +02:00
|
|
|
|
|
|
|
- name: copy user_ca.pub
|
|
|
|
copy:
|
|
|
|
src: user_ca.pub
|
|
|
|
dest: "/etc/ssh/user_ca.pub"
|
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|