12 lines
157 B
YAML
12 lines
157 B
YAML
|
|
||
|
- name: Get Windows info
|
||
|
hosts: windows
|
||
|
|
||
|
tasks:
|
||
|
- name: get stuff
|
||
|
win_product_facts:
|
||
|
register: output
|
||
|
|
||
|
- debug: msg="{{ output }}"
|
||
|
|