|
| 1 | + |
| 2 | +# These steps automate the installation guide here: |
| 3 | +# https://smallstep.com/docs/sso-ssh/hosts/ |
| 4 | + |
| 5 | +# TODO: Figure out how to make this idempotent instead of reinstalling on each run |
| 6 | + |
| 7 | +- name: Bootstrap node to connect to CA |
| 8 | + command: "step ca bootstrap --context ssh --ca-url {{ smallstep_ssh_ca_url }} --fingerprint {{ smallstep_ssh_ca_fingerprint }} --force" |
| 9 | +# when: smallstep_ssh_installed.changed or smallstep_ssh_force_reinit |
| 10 | + |
| 11 | +- name: Get a host SSH certificate |
| 12 | + command: "step ssh certificate --context ssh {{ inventory_hostname }} /etc/ssh/ssh_host_ecdsa_key.pub --host --sign --provisioner=\"Service Account\" --token=\"{{ smallstep_ssh_enrollment_token }}\" --force" |
| 13 | +# when: smallstep_ssh_installed.changed or smallstep_ssh_force_reinit |
| 14 | + |
| 15 | +- name: Configure SSHD (will be overwriten by the sshd template in Ansible later) |
| 16 | + command: "step ssh config --context ssh --host --set Certificate=ssh_host_ecdsa_key-cert.pub --set Key=ssh_host_ecdsa_key" |
| 17 | +# when: smallstep_ssh_installed.changed or smallstep_ssh_force_reinit |
| 18 | + |
| 19 | +- name: Activate SmallStep PAM/NSS modules and nohup sshd |
| 20 | + command: "step-ssh activate {{ inventory_hostname }}" |
| 21 | +# when: smallstep_ssh_installed.changed or smallstep_ssh_force_reinit |
| 22 | + |
| 23 | +- name: Generate host tags list |
| 24 | + set_fact: |
| 25 | + smallstep_ssh_host_tags_string: "{{ smallstep_ssh_host_tags | to_json | regex_replace('\\:\\ ','=') | regex_replace('\\{\\\"|,\\ \\\"', ' --tag \"') | regex_replace('[\\[\\]{}]') }}" |
| 26 | + |
| 27 | +- name: Generate command to register |
| 28 | + set_fact: |
| 29 | + smallstep_ssh_register_string: | |
| 30 | + step-ssh-ctl register |
| 31 | + --hostname {{ inventory_hostname }} |
| 32 | + {% if not smallstep_ssh_host_is_bastion %}--bastion '{{ smallstep_ssh_host_behind_bastion_name|default("") }}'{% endif %} |
| 33 | + {% if smallstep_ssh_host_is_bastion %}--is-bastion{% endif %} |
| 34 | + {{ smallstep_ssh_host_tags_string }} |
| 35 | +
|
| 36 | +- debug: var=smallstep_ssh_register_string |
| 37 | + |
| 38 | +- name: Register host with smallstep |
| 39 | + command: "{{ smallstep_ssh_register_string }}" |
| 40 | +# when: smallstep_ssh_installed.changed or smallstep_ssh_force_reinit |
| 41 | + |
0 commit comments