blob: 3cb9f43aad22d969c73ad7ab2f40e9c14977db10 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: Fixture for test_extra_vars_passed_to_command test
hosts: all
tags:
- baz
- "{{ foo }}"
tasks:
- name: Show `complex_variable` value loaded from `extra_vars`
ansible.builtin.debug:
msg: "{{ complex_variable }}"
|