fix ssh key deployment
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Robert Kaussow 2020-09-30 23:17:10 +02:00
parent d871d12b02
commit 3439ae090c
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61

View File

@ -25,10 +25,9 @@
- name: Write SSH private key
copy:
content: "{{ item }}"
content: "{{ inst.sshkey | default(droneci_autoscaler_sshkey) }}"
dest: "{{ __droneci_autoscaler_workdir }}/ssh_key"
mode: 0600
loop: "{{ inst.ssh_key | default(droneci_autoscaler_sshkey) }}"
when: __droneci_autoscaler_sshkey
no_log: True