summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/custom_tasks/tasks/main.yml
blob: 182f7ccaab581009c0ec4a20f0295ba0a6fbd507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- set_fact:
    output_dir: "{{ lookup('env', 'OUTPUT_DIR') }}"

- template:
    src: test
    dest: "{{ output_dir }}/templated_test"
  register: custom_template_result

- debug:
    msg: "{{ custom_template_result }}"

- assert:
    that:
      - custom_template_result.changed