Skip to content

Commit

Permalink
Add missing new line at ssh key injection
Browse files Browse the repository at this point in the history
This should fix "Invalid Format" ssh key issue

Change-Id: I7604c77c5f71210e620dcf5b7824996e759fbe6a
  • Loading branch information
qinqon committed Jan 22, 2019
1 parent ff8bfb2 commit 08b2cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/playbooks/inject-ssh-keys.yaml
Expand Up @@ -9,7 +9,7 @@
mode: 0644
- name: Dump ssh keys
copy:
content: "{{ lookup('env', item) | b64decode }}"
content: "{{ lookup('env', item) | b64decode }}\n"
dest: /var/ssh/{{ item }}
mode: 0600
with_items:
Expand Down

0 comments on commit 08b2cc9

Please sign in to comment.