Skip to content

Commit 808f039

Browse files
Added some example ansible configs (smallstep#813)
1 parent 4a0cfd2 commit 808f039

File tree

6 files changed

+142
-0
lines changed

6 files changed

+142
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
3+
4+
# Root cert for each will be saved in /etc/ssl/smallstep/ca/{{ ca_name }}/certs/root_ca.crt
5+
smallstep_root_certs: []
6+
# -
7+
# ca_name: your_ca
8+
# ca_url: "https://certs.your_ca.ca.smallstep.com"
9+
# ca_fingerprint: "56092...2200"
10+
11+
# Each leaf cert will be saved in /etc/ssl/smallstep/leaf/{{ cert_subject }}/{{ cert_subject }}.crt|key
12+
smallstep_leaf_certs: []
13+
# -
14+
# ca_name: your_ca
15+
# cert_subject: "{{ inventory_hostname }}"
16+
# provisioner_name: "admin"
17+
# provisioner_password: "{{ smallstep_ssh_provisioner_password }}"
18+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
- name: "Ensure provisioners directories exist"
3+
file:
4+
path: "/etc/ssl/smallstep/provisioners/{{ item.context }}/{{ item.provisioner_name }}"
5+
state: directory
6+
mode: 0600
7+
owner: root
8+
group: root
9+
with_items: "{{ smallstep_leaf_certs }}"
10+
no_log: true
11+
12+
- name: "Ensure provisioner passwords are up to date"
13+
copy:
14+
dest: "/etc/ssl/smallstep/provisioners/{{ item.context }}/{{ item.provisioner_name }}/provisioner-pass.txt"
15+
content: "{{ item.provisioner_password }}"
16+
mode: 0700
17+
owner: root
18+
group: root
19+
with_items: "{{ smallstep_leaf_certs }}"
20+
no_log: true
21+
22+
- name: "Get root certs for CAs"
23+
command:
24+
cmd: "step ca bootstrap --context {{ item.context }} --ca-url {{ item.ca_url }} --fingerprint {{ item.ca_fingerprint }}"
25+
with_items: "{{ smallstep_root_certs }}"
26+
no_log: true
27+
28+
- name: "Get leaf certs"
29+
command:
30+
cmd: "step ca certificate --context {{ item.context }} {{ item.cert_subject }} {{ item.cert_path }} {{ item.key_path }} --force --console --provisioner {{ item.provisioner_name }} --provisioner-password-file /etc/ssl/smallstep/provisioners/{{ item.context }}/{{ item.provisioner_name }}/provisioner-pass.txt"
31+
with_items: "{{ smallstep_leaf_certs }}"
32+
no_log: true
33+
34+
- name: Ensure cron to renew leaf certs is up to date
35+
cron:
36+
user: "root"
37+
name: "renew leaf cert {{ item.cert_subject }}"
38+
cron_file: smallstep
39+
job: "step ca renew --context {{ item.context }} {{ item.cert_path }} {{ item.key_path }} --expires-in 6h --force >> /var/log/smallstep-{{ item.cert_subject }}.log 2>&1"
40+
state: present
41+
minute: "*/30"
42+
with_items: "{{ smallstep_leaf_certs }}"
43+
when: "{{ item.cron_renew }}"
44+
no_log: true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
smallstep_install_step_version: 0.15.3
2+
smallstep_install_step_ssh_version: 0.19.1-1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
# These steps automate the installation guide here:
3+
# https://smallstep.com/docs/sso-ssh/hosts/
4+
5+
- name: Download step binary
6+
get_url:
7+
url: "https://files.smallstep.com/step-linux-{{ smallstep_install_step_version }}"
8+
dest: "/usr/local/bin/step-{{ smallstep_install_step_version }}"
9+
mode: '0755'
10+
11+
- name: Link binaries to correct version
12+
file:
13+
src: "/usr/local/bin/step-{{ smallstep_install_step_version }}"
14+
dest: "{{ item }}"
15+
state: link
16+
with_items:
17+
- /usr/bin/step
18+
- /usr/local/bin/step
19+
20+
- name: Link /usr/local/bin/step to correct binary version
21+
file:
22+
src: "/usr/local/bin/step-{{ smallstep_install_step_version }}"
23+
dest: /usr/local/bin/step
24+
state: link
25+
26+
- name: Ensure step-ssh is installed
27+
apt:
28+
deb: "https://files.smallstep.com/step-ssh_{{ smallstep_install_step_ssh_version }}_amd64.deb"
29+
state: present
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# If this host is behind a bastion this variable should contain the hostname of the bastion
2+
smallstep_ssh_host_behind_bastion_name: ""
3+
smallstep_ssh_host_is_bastion: false
4+
smallstep_ssh_ca_url: "https://ssh.mycompany.ca.smallstep.com"
5+
smallstep_ssh_ca_fingerprint: "XXXXXXXXXXXXXXX"
6+
7+
# Whether or not to reinitialize the host even if it's already been installed
8+
smallstep_ssh_force_reinit: true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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

Comments
 (0)