Add debugging to figure out wtf is happening here

This commit is contained in:
Kevin Thompson
2025-04-27 13:52:03 -05:00
parent 83932105ef
commit 1e8ddde514

View File

@@ -4,6 +4,10 @@
register: linode_inventory_raw
changed_when: false
- name: Show raw script output
ansible.builtin.debug:
var: linode_inventory_raw.stdout
- name: Parse JSON inventory output
ansible.builtin.set_fact:
linode_inventory: "{{ linode_inventory_raw.stdout | from_json }}"