SSH: Template authorized_keys file
This commit is contained in:
parent
547b1373c3
commit
af54b8ce71
@ -20,21 +20,15 @@
|
|||||||
register: pubkey
|
register: pubkey
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
cmd: "ssh-keygen -y -f {{ ansible_ssh_private_key_file }}"
|
cmd: "ssh-keygen -y -f {{ ansible_ssh_private_key_file }}"
|
||||||
- name: Deploy Machine SSH-Key
|
- name: Deploy SSH-Keys
|
||||||
ansible.posix.authorized_key:
|
vars:
|
||||||
user: "{{ ansible_user }}"
|
machine_key: "{{ pubkey.stdout }}"
|
||||||
state: present
|
ansible.builtin.template:
|
||||||
manage_dir: false
|
src: "authorized_keys.j2"
|
||||||
path: "/etc/ssh/authorized_keys/{{ ansible_user }}"
|
dest: "/etc/ssh/authorized_keys/{{ ansible_user }}"
|
||||||
key: "{{ pubkey.stdout }}"
|
owner: root
|
||||||
- name: Deploy Common SSH-Keys
|
group: root
|
||||||
ansible.posix.authorized_key:
|
mode: '0644'
|
||||||
user: "{{ ansible_user }}"
|
|
||||||
state: present
|
|
||||||
manage_dir: false
|
|
||||||
path: "/etc/ssh/authorized_keys/{{ ansible_user }}"
|
|
||||||
key: "{{ item }}"
|
|
||||||
loop: "{{ common.ssh.authorized_keys }}"
|
|
||||||
- name: Ensure authorized_keys ownership
|
- name: Ensure authorized_keys ownership
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
state: directory
|
state: directory
|
||||||
|
4
ansible/plays/templates/authorized_keys.j2
Normal file
4
ansible/plays/templates/authorized_keys.j2
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{{ machine_key }}
|
||||||
|
{% for key in common.ssh.authorized_keys %}
|
||||||
|
{{ key }}
|
||||||
|
{% endfor %}
|
Loading…
x
Reference in New Issue
Block a user