ansible/cloud/vmware
Joseph Callen df7e3b081e Resolves issue with vmware_cluster module for v2.0
When this module was written back in May 2015 we were using 1.9.x. Being lazy I added to param the objects that the other functions would need. What I have noticed is in 2.0 exit_json is trying to jsonify those complex objects and failing. This PR resolves that issue with the vmware_cluster module.

@kamsz reported this issue in https://github.com/ansible/ansible-modules-extras/pull/1568

Playbook
```
    - name: Create Cluster
      local_action:
        module: vmware_cluster
        hostname: "{{ mgmt_ip_address }}"
        username: "{{ vcsa_user }}"
        password: "{{ vcsa_pass }}"
        datacenter_name: "{{ mgmt_vdc }}"
        cluster_name: "{{ mgmt_cluster }}"
        enable_ha: True
        enable_drs: True
        enable_vsan: True
```

Module testing
```
TASK [Create Cluster] **********************************************************
task path: /opt/autodeploy/projects/emmet/site_deploy.yml:188
ESTABLISH LOCAL CONNECTION FOR USER: root
localhost EXEC ( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1454693788.92-14097560271233 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1454693788.92-14097560271233 )" )
localhost PUT /tmp/tmpAJfdPb TO /root/.ansible/tmp/ansible-tmp-1454693788.92-14097560271233/vmware_cluster
localhost EXEC LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1454693788.92-14097560271233/vmware_cluster; rm -rf "/root/.ansible/tmp/ansible-tmp-1454693788.92-14097560271233/" > /dev/null 2>&1
changed: [foundation-vcsa -> localhost] => {"changed": true, "invocation": {"module_args": {"cluster_name": "Foundation", "datacenter_name": "Test-Lab", "enable_drs": true, "enable_ha": true, "enable_vsan": true, "hostname": "172.27.0.100", "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "state": "present", "username": "root"}, "module_name": "vmware_cluster"}}
```
2016-02-05 14:14:25 -05:00
..
__init__.py moved new module to proper subdir 2015-04-22 10:18:34 -04:00
vca_fw.py use doc fragments 2016-01-12 11:03:44 -06:00
vca_nat.py Merge pull request #1487 from chrrrles/vmware_doc_fragments 2016-01-15 15:42:25 -06:00
vca_vapp.py Fix indent 2016-02-03 14:36:04 -07:00
vmware_cluster.py Resolves issue with vmware_cluster module for v2.0 2016-02-05 14:14:25 -05:00
vmware_datacenter.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dns_config.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dvs_host.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dvs_portgroup.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_dvswitch.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_host.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_migrate_vmk.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_portgroup.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_target_canonical_facts.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vm_facts.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vm_shell.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vm_vss_dvs_migrate.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vmkernel.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vmkernel_ip_config.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vsan_cluster.py use doc fragments 2016-01-12 11:03:44 -06:00
vmware_vswitch.py use doc fragments 2016-01-12 11:03:44 -06:00
vsphere_copy.py adding no_log to password 2016-01-05 14:36:05 -06:00