vn-ansible/playbooks/facts.yml

12 lines
297 B
YAML

# https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_vars_facts.html
- hosts: all
gather_facts: yes
tasks:
- name: Print all available facts
ansible.builtin.debug:
var: ansible_facts
- name: Print variable value
debug:
msg: "Variable: {{ awx_pub_key }}"