no temp dir

This commit is contained in:
Marco Lettere 2020-11-19 11:16:36 +01:00
parent 6585c0d43d
commit 901f8b8de8
1 changed files with 4 additions and 2 deletions

View File

@ -2,13 +2,15 @@
- name: Generate taskdefs
template:
src: "templates/taskdefs.json.j2"
dest: "{{ target_path }}/taskdefs.json"
#dest: "{{ target_path }}/taskdefs.json"
dest: "taskdefs.json"
- name: Upload task definitions
uri:
url: "{{ conductor_taskdef_endpoint }}"
method: POST
src: "{{ target_path }}/taskdefs.json"
#src: "{{ target_path }}/taskdefs.json"
src: "taskdefs.json"
body_format: json
status_code: 204
follow_redirects: yes