I'm not able to do a very simple thing.
In my task I'm trying to concat two default variables with a literal string to create a path
- name: "Uploading File"
copy:
src: "{{ installer_iso_src_location }}"/"{{ installer_version }}"/filename.iso
dest: /opt/temp/filename.iso
This gives me a error. Any idea how to concatenate a variable and literal strings?