mirror of
https://github.com/trailofbits/algo
synced 2024-11-04 06:00:21 +00:00
26 lines
789 B
YAML
26 lines
789 B
YAML
---
|
|
|
|
- name: Generate the SSH private key
|
|
local_action: shell echo -e 'n' | ssh-keygen -b 2048 -C {{ SSH_keys.comment }} -t rsa -f {{ SSH_keys.private }} -q -N ""
|
|
args:
|
|
creates: "{{ SSH_keys.public }}"
|
|
|
|
- name: Generate the SSH public key
|
|
local_action: shell echo `ssh-keygen -y -f {{ SSH_keys.private }}` {{ SSH_keys.comment }} > {{ SSH_keys.public }}
|
|
args:
|
|
creates: "{{ SSH_keys.public }}"
|
|
|
|
- name: Change mode for the SSH private key
|
|
local_action: file path={{ SSH_keys.private }} mode=0600
|
|
|
|
- name: Ensure the dynamic inventory exists
|
|
blockinfile:
|
|
dest: configs/inventory.dynamic
|
|
marker: "# {mark} ALGO MANAGED BLOCK"
|
|
create: yes
|
|
block: |
|
|
[algo:children]
|
|
{% for group in dynamic_inventory_groups %}
|
|
{{ group }}
|
|
{% endfor %}
|