Fix hardcoded names

pull/282/head
Jack Ivanov 7 years ago
parent 6facb6cb4f
commit 4de4229e82

@ -3,15 +3,15 @@
- 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
creates: "{{ SSH_keys.public }}"
- name: Generate the SSH public key
local_action: shell echo `ssh-keygen -y -f configs/algo.pem` {{ SSH_keys.comment }} > {{ SSH_keys.public }}
local_action: shell echo `ssh-keygen -y -f {{ SSH_keys.private }}` {{ SSH_keys.comment }} > {{ SSH_keys.public }}
args:
creates: configs/algo.pem.pub
creates: "{{ SSH_keys.public }}"
- name: Change mode for the SSH private key
local_action: file path=configs/algo.pem mode=0600
local_action: file path={{ SSH_keys.private }} mode=0600
- name: Ensure the dynamic inventory exists
blockinfile:

@ -9,7 +9,7 @@
- name: Copy the algo ssh key to the local ssh directory
local_action:
module: copy
src: configs/algo.pem
src: "{{ SSH_keys.private }}"
dest: ~/.ssh/algo.pem
mode: '0600'

Loading…
Cancel
Save