mirror of
https://github.com/trailofbits/algo
synced 2024-11-13 19:12:06 +00:00
15 lines
491 B
YAML
15 lines
491 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: configs/algo.pem
|
|
|
|
- name: Generate the SSH public key
|
|
local_action: shell echo `ssh-keygen -y -f configs/algo.pem` {{ SSH_keys.comment }} > {{ SSH_keys.public }}
|
|
args:
|
|
creates: configs/algo.pem.pub
|
|
|
|
- name: Change mode for the SSH private key
|
|
local_action: file path=configs/algo.pem mode=0600
|