callback_demo/callback_demo.yml
2023-12-04 11:03:53 -05:00

21 lines
519 B
YAML

- name: Callback plugin from collection demo
hosts: localhost
connection: local
become: false
gather_facts: false
tasks:
- name: Simply say hello
ansible.builtin.debug:
msg: Hello.
- name: Hello again.
ansible.builtin.debug:
msg: Hello. Again.
- name: Job status URL & token obtained from custom credential extra_vars
ansible.builtin.debug:
msg:
- "job_status_url: {{ job_status_url }}"
- "job_status_token: {{ job_status_token }}"