1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 19:49:09 +00:00

VMware: Add check mode support in vmware_host_config_facts (#46272)

This commit is contained in:
Christian Kotte 2018-10-03 14:55:40 +02:00 committed by Abhijeet Kasurde
parent 77fee07a88
commit 1589424c3e
2 changed files with 32 additions and 1 deletions

View file

@ -80,3 +80,33 @@
assert:
that:
- single_hosts_result.hosts_facts
- name: gather facts about all hosts in given cluster in check mode
vmware_host_config_facts:
hostname: "{{ vcsim }}"
username: "{{ vcsim_instance.json.username }}"
password: "{{ vcsim_instance.json.password }}"
validate_certs: no
cluster_name: "{{ ccr1 }}"
register: all_hosts_result_check_mode
check_mode: yes
- name: ensure facts are gathered for all hosts
assert:
that:
- all_hosts_result_check_mode.hosts_facts
- name: gather facts about a given host in check mode
vmware_host_config_facts:
hostname: "{{ vcsim }}"
username: "{{ vcsim_instance.json.username }}"
password: "{{ vcsim_instance.json.password }}"
validate_certs: no
esxi_hostname: "{{ host1 }}"
register: single_hosts_result_check_mode
check_mode: yes
- name: ensure facts are gathered for all hosts
assert:
that:
- single_hosts_result_check_mode.hosts_facts