provision_ssh_keys.yml 312 B

12345678910
  1. ---
  2. - name: Templatize SSH key provision script
  3. template: src=provision_ssh.j2.sh dest=/tmp/openshift_gcp_provision_ssh.sh mode=u+rx
  4. - name: Provision GCP SSH key resources
  5. command: /tmp/openshift_gcp_provision_ssh.sh
  6. args:
  7. chdir: "{{ files_dir }}"
  8. when:
  9. - state | default('present') == 'present'