Update win_disk_facts.py example (#63266)

Fix incorrect index for second disk (should be `disks[1]` not `disks[0]`)
This commit is contained in:
m3gat0nn4ge 2019-10-10 06:21:37 +11:00 committed by Alicia Cozine
parent aa04e61c89
commit ce1c8c24f7

View file

@ -50,7 +50,7 @@ EXAMPLES = r'''
- name: Output second disk serial number
debug:
var: ansible_facts.disks[0].serial_number
var: ansible_facts.disks[1].serial_number
'''
RETURN = r'''