Ansible vmware_guest_facts use facts for multple vm'sAnsible Gathering Facts not working?How to see stdout of ansible commands?How to get remote server facts on ansibleAnsible stuck on gathering factsAnsible sudo actions on Azure VM'sansible custom facts returning string not arrayansible: gather facts in a task?Ansible = use facts as variables in inventory fileAnsible Loop Over Custom FactsPrint Ansible facts from a loop

Why is the relationship between frequency and pitch exponential?

Select items in a list that contain criteria

2.8 is missing the Carve option in the Boolean Modifier

How bad would a partial hash leak be, realistically?

What do we gain with higher order logics?

Version 2 - print new even-length arrays from two arrays

Can a user sell my software (MIT license) without modification?

Does an ice chest packed full of frozen food need ice?

After the loss of Challenger, why weren’t Galileo and Ulysses launched by Centaurs on expendable boosters?

Why heater blocks on hotends?

How to retract the pitched idea from employer?

Smooth switching between 12v batteries, with toggle switch

Traffic law UK, pedestrians

Why does Kathryn say this in 12 Monkeys?

Do any instruments not produce overtones?

Last survivors from different time periods living together

How is it possible that Gollum speaks Westron?

Why only the fundamental frequency component is said to give useful power?

Why don’t airliners have temporary liveries?

What are the peak hours for public transportation in Paris?

Payment instructions from HomeAway look fishy to me

Where does this pattern of naming products come from?

Company did not petition for visa in a timely manner. Is asking me to work from overseas, but wants me to take a paycut

Implement Homestuck's Catenative Doomsday Dice Cascader



Ansible vmware_guest_facts use facts for multple vm's


Ansible Gathering Facts not working?How to see stdout of ansible commands?How to get remote server facts on ansibleAnsible stuck on gathering factsAnsible sudo actions on Azure VM'sansible custom facts returning string not arrayansible: gather facts in a task?Ansible = use facts as variables in inventory fileAnsible Loop Over Custom FactsPrint Ansible facts from a loop






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I am writing a script where I deploy and configure VM's on a vSphere environment.



After the deployment I want to gather the IP's of the VM's for DNS registration.
Facts can be gathered for 2 or more VM's at the same time.
But how do I then use the gathered data to output a VM name with IP address?



For a single VM this works to get the IP, but when used with 2 VM's the variable is undefinied:



- debug:
var: vm_guest_facts.instance.ipv4


Maybe my approach is wrong, but I am not really sure how else to do it.



- name: Gather facts from recently deployed VM's

vmware_guest_facts:
validate_certs: False
hostname: " vcenter_hostname "
username: " vcenter_user "
password: " vcenter_pass "
datacenter: " datacenter "
name: " item.key "
register: vm_guest_facts
with_dict: " vmdetails "

- debug:
var: vm_guest_facts


Results (the hostname and folder is Terraform, but this example only uses Ansible):



TASK [Gather facts from standalone ESXi server having datacenter as 'ha- 
datacenter']

ok: [terraform.rum.local] => (item='value': u'mem': 512, u'network': u'T1-
PRD', u'datastore': u'nfs-b', u'cpu': 1, u'vmfolder': u'terraform-deploy',
'key': u'testvm4')
ok: [terraform.rum.local] => (item='value': u'mem': 756, u'network': u'T2-
TEST', u'datastore': u'nfs-a', u'cpu': 2, u'vmfolder': u'terraform-deploy',
'key': u'testvm3')

TASK [debug]
*************************************
ok: [terraform.rum.local] =>
"vm_guest_facts":
"changed": false,
"msg": "All items completed",
"results": [

"_ansible_ignore_errors": null,
"_ansible_item_result": true,
"_ansible_no_log": false,
"_ansible_parsed": true,
"changed": false,
"failed": false,
"instance":
"annotation": "",
"current_snapshot": null,
"customvalues": ,
"guest_consolidation_needed": false,
"guest_question": null,
"guest_tools_status": "guestToolsRunning",
"guest_tools_version": "10304",
"hw_cores_per_socket": 1,
"hw_datastores": [
"nfs-b",
"nfs-a"
],
"hw_esxi_host": "esx-a.rum.local",
"hw_eth0":
"addresstype": "assigned",
"ipaddresses": [
"192.168.1.12",
"fe80::250:56ff:feb8:d51c"
],
"label": "Network adapter 1",
"macaddress": "00:50:56:b8:d5:1c",
"macaddress_dash": "00-50-56-b8-d5-1c",
"summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
,
"hw_files": [
"[nfs-b] testvm4/testvm4.vmx",
"[nfs-b] testvm4/testvm4.nvram",
"[nfs-b] testvm4/testvm4.vmsd",
"[nfs-b] testvm4/testvm4.vmxf",
"[nfs-b] testvm4/testvm4.vmdk"
],
"hw_folder": "/datacenter1/vm/terraform-deploy",
"hw_guest_full_name": "CentOS 7 (64-bit)",
"hw_guest_ha_state": null,
"hw_guest_id": "centos7_64Guest",
"hw_interfaces": [
"eth0"
],
"hw_is_template": false,
"hw_memtotal_mb": 512,
"hw_name": "testvm4",
"hw_power_status": "poweredOn",
"hw_processor_count": 1,
"hw_product_uuid": "42387ae9-cac5-1faa-1e84-0859533dd2b0",
"instance_uuid": "5038a877-e2db-1bfd-6439-78f6522a9049",
"ipv4": "192.168.1.12",
"ipv6": "fe80::250:56ff:feb8:d51c",
"module_hw": true,
"snapshots": []
,
"invocation":
"module_args":
"datacenter": "datacenter1",
"folder": "/vm",
"hostname": "vcenter.rum.local",
"name": "testvm4",
"name_match": "first",
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
"port": 443,
"username": "administrator@vsphere.local",
"uuid": null,
"validate_certs": false

,
"item":
"key": "testvm4",
"value":
"cpu": 1,
"datastore": "nfs-b",
"mem": 512,
"network": "T1-PRD",
"vmfolder": "terraform-deploy"


,

"_ansible_ignore_errors": null,
"_ansible_item_result": true,
"_ansible_no_log": false,
"_ansible_parsed": true,
"changed": false,
"failed": false,
"instance":
"annotation": "",
"current_snapshot": null,
"customvalues": ,
"guest_consolidation_needed": false,
"guest_question": null,
"guest_tools_status": "guestToolsRunning",
"guest_tools_version": "10304",
"hw_cores_per_socket": 1,
"hw_datastores": [
"nfs-a"
],
"hw_esxi_host": "esx-a.rum.local",
"hw_eth0":
"addresstype": "assigned",
"ipaddresses": [
"192.168.1.16",
"fe80::250:56ff:feb8:5e2c"
],
"label": "Network adapter 1",
"macaddress": "00:50:56:b8:5e:2c",
"macaddress_dash": "00-50-56-b8-5e-2c",
"summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
,
"hw_files": [
"[nfs-a] testvm3/testvm3.vmx",
"[nfs-a] testvm3/testvm3.nvram",
"[nfs-a] testvm3/testvm3.vmsd",
"[nfs-a] testvm3/testvm3.vmxf",
"[nfs-a] testvm3/testvm3.vmdk"
],
"hw_folder": "/datacenter1/vm/terraform-deploy",
"hw_guest_full_name": "CentOS 7 (64-bit)",
"hw_guest_ha_state": null,
"hw_guest_id": "centos7_64Guest",
"hw_interfaces": [
"eth0"
],
"hw_is_template": false,
"hw_memtotal_mb": 756,
"hw_name": "testvm3",
"hw_power_status": "poweredOn",
"hw_processor_count": 2,
"hw_product_uuid": "4238b6c3-a81a-cb51-a816-b83627bfcab0",
"instance_uuid": "5038a0b1-f75a-f8cb-a872-344afdb1bc6f",
"ipv4": "192.168.1.16",
"ipv6": "fe80::250:56ff:feb8:5e2c",
"module_hw": true,
"snapshots": []
,
"invocation":
"module_args":
"datacenter": "datacenter1",
"folder": "/vm",
"hostname": "vcenter.rum.local",
"name": "testvm3",
"name_match": "first",
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
"port": 443,
"username": "administrator@vsphere.local",
"uuid": null,
"validate_certs": false

,
"item":
"key": "testvm3",
"value":
"cpu": 2,
"datastore": "nfs-a",
"mem": 756,
"network": "T2-TEST",
"vmfolder": "terraform-deploy"



]











share|improve this question




























    1















    I am writing a script where I deploy and configure VM's on a vSphere environment.



    After the deployment I want to gather the IP's of the VM's for DNS registration.
    Facts can be gathered for 2 or more VM's at the same time.
    But how do I then use the gathered data to output a VM name with IP address?



    For a single VM this works to get the IP, but when used with 2 VM's the variable is undefinied:



    - debug:
    var: vm_guest_facts.instance.ipv4


    Maybe my approach is wrong, but I am not really sure how else to do it.



    - name: Gather facts from recently deployed VM's

    vmware_guest_facts:
    validate_certs: False
    hostname: " vcenter_hostname "
    username: " vcenter_user "
    password: " vcenter_pass "
    datacenter: " datacenter "
    name: " item.key "
    register: vm_guest_facts
    with_dict: " vmdetails "

    - debug:
    var: vm_guest_facts


    Results (the hostname and folder is Terraform, but this example only uses Ansible):



    TASK [Gather facts from standalone ESXi server having datacenter as 'ha- 
    datacenter']

    ok: [terraform.rum.local] => (item='value': u'mem': 512, u'network': u'T1-
    PRD', u'datastore': u'nfs-b', u'cpu': 1, u'vmfolder': u'terraform-deploy',
    'key': u'testvm4')
    ok: [terraform.rum.local] => (item='value': u'mem': 756, u'network': u'T2-
    TEST', u'datastore': u'nfs-a', u'cpu': 2, u'vmfolder': u'terraform-deploy',
    'key': u'testvm3')

    TASK [debug]
    *************************************
    ok: [terraform.rum.local] =>
    "vm_guest_facts":
    "changed": false,
    "msg": "All items completed",
    "results": [

    "_ansible_ignore_errors": null,
    "_ansible_item_result": true,
    "_ansible_no_log": false,
    "_ansible_parsed": true,
    "changed": false,
    "failed": false,
    "instance":
    "annotation": "",
    "current_snapshot": null,
    "customvalues": ,
    "guest_consolidation_needed": false,
    "guest_question": null,
    "guest_tools_status": "guestToolsRunning",
    "guest_tools_version": "10304",
    "hw_cores_per_socket": 1,
    "hw_datastores": [
    "nfs-b",
    "nfs-a"
    ],
    "hw_esxi_host": "esx-a.rum.local",
    "hw_eth0":
    "addresstype": "assigned",
    "ipaddresses": [
    "192.168.1.12",
    "fe80::250:56ff:feb8:d51c"
    ],
    "label": "Network adapter 1",
    "macaddress": "00:50:56:b8:d5:1c",
    "macaddress_dash": "00-50-56-b8-d5-1c",
    "summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
    ,
    "hw_files": [
    "[nfs-b] testvm4/testvm4.vmx",
    "[nfs-b] testvm4/testvm4.nvram",
    "[nfs-b] testvm4/testvm4.vmsd",
    "[nfs-b] testvm4/testvm4.vmxf",
    "[nfs-b] testvm4/testvm4.vmdk"
    ],
    "hw_folder": "/datacenter1/vm/terraform-deploy",
    "hw_guest_full_name": "CentOS 7 (64-bit)",
    "hw_guest_ha_state": null,
    "hw_guest_id": "centos7_64Guest",
    "hw_interfaces": [
    "eth0"
    ],
    "hw_is_template": false,
    "hw_memtotal_mb": 512,
    "hw_name": "testvm4",
    "hw_power_status": "poweredOn",
    "hw_processor_count": 1,
    "hw_product_uuid": "42387ae9-cac5-1faa-1e84-0859533dd2b0",
    "instance_uuid": "5038a877-e2db-1bfd-6439-78f6522a9049",
    "ipv4": "192.168.1.12",
    "ipv6": "fe80::250:56ff:feb8:d51c",
    "module_hw": true,
    "snapshots": []
    ,
    "invocation":
    "module_args":
    "datacenter": "datacenter1",
    "folder": "/vm",
    "hostname": "vcenter.rum.local",
    "name": "testvm4",
    "name_match": "first",
    "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
    "port": 443,
    "username": "administrator@vsphere.local",
    "uuid": null,
    "validate_certs": false

    ,
    "item":
    "key": "testvm4",
    "value":
    "cpu": 1,
    "datastore": "nfs-b",
    "mem": 512,
    "network": "T1-PRD",
    "vmfolder": "terraform-deploy"


    ,

    "_ansible_ignore_errors": null,
    "_ansible_item_result": true,
    "_ansible_no_log": false,
    "_ansible_parsed": true,
    "changed": false,
    "failed": false,
    "instance":
    "annotation": "",
    "current_snapshot": null,
    "customvalues": ,
    "guest_consolidation_needed": false,
    "guest_question": null,
    "guest_tools_status": "guestToolsRunning",
    "guest_tools_version": "10304",
    "hw_cores_per_socket": 1,
    "hw_datastores": [
    "nfs-a"
    ],
    "hw_esxi_host": "esx-a.rum.local",
    "hw_eth0":
    "addresstype": "assigned",
    "ipaddresses": [
    "192.168.1.16",
    "fe80::250:56ff:feb8:5e2c"
    ],
    "label": "Network adapter 1",
    "macaddress": "00:50:56:b8:5e:2c",
    "macaddress_dash": "00-50-56-b8-5e-2c",
    "summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
    ,
    "hw_files": [
    "[nfs-a] testvm3/testvm3.vmx",
    "[nfs-a] testvm3/testvm3.nvram",
    "[nfs-a] testvm3/testvm3.vmsd",
    "[nfs-a] testvm3/testvm3.vmxf",
    "[nfs-a] testvm3/testvm3.vmdk"
    ],
    "hw_folder": "/datacenter1/vm/terraform-deploy",
    "hw_guest_full_name": "CentOS 7 (64-bit)",
    "hw_guest_ha_state": null,
    "hw_guest_id": "centos7_64Guest",
    "hw_interfaces": [
    "eth0"
    ],
    "hw_is_template": false,
    "hw_memtotal_mb": 756,
    "hw_name": "testvm3",
    "hw_power_status": "poweredOn",
    "hw_processor_count": 2,
    "hw_product_uuid": "4238b6c3-a81a-cb51-a816-b83627bfcab0",
    "instance_uuid": "5038a0b1-f75a-f8cb-a872-344afdb1bc6f",
    "ipv4": "192.168.1.16",
    "ipv6": "fe80::250:56ff:feb8:5e2c",
    "module_hw": true,
    "snapshots": []
    ,
    "invocation":
    "module_args":
    "datacenter": "datacenter1",
    "folder": "/vm",
    "hostname": "vcenter.rum.local",
    "name": "testvm3",
    "name_match": "first",
    "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
    "port": 443,
    "username": "administrator@vsphere.local",
    "uuid": null,
    "validate_certs": false

    ,
    "item":
    "key": "testvm3",
    "value":
    "cpu": 2,
    "datastore": "nfs-a",
    "mem": 756,
    "network": "T2-TEST",
    "vmfolder": "terraform-deploy"



    ]











    share|improve this question
























      1












      1








      1


      1






      I am writing a script where I deploy and configure VM's on a vSphere environment.



      After the deployment I want to gather the IP's of the VM's for DNS registration.
      Facts can be gathered for 2 or more VM's at the same time.
      But how do I then use the gathered data to output a VM name with IP address?



      For a single VM this works to get the IP, but when used with 2 VM's the variable is undefinied:



      - debug:
      var: vm_guest_facts.instance.ipv4


      Maybe my approach is wrong, but I am not really sure how else to do it.



      - name: Gather facts from recently deployed VM's

      vmware_guest_facts:
      validate_certs: False
      hostname: " vcenter_hostname "
      username: " vcenter_user "
      password: " vcenter_pass "
      datacenter: " datacenter "
      name: " item.key "
      register: vm_guest_facts
      with_dict: " vmdetails "

      - debug:
      var: vm_guest_facts


      Results (the hostname and folder is Terraform, but this example only uses Ansible):



      TASK [Gather facts from standalone ESXi server having datacenter as 'ha- 
      datacenter']

      ok: [terraform.rum.local] => (item='value': u'mem': 512, u'network': u'T1-
      PRD', u'datastore': u'nfs-b', u'cpu': 1, u'vmfolder': u'terraform-deploy',
      'key': u'testvm4')
      ok: [terraform.rum.local] => (item='value': u'mem': 756, u'network': u'T2-
      TEST', u'datastore': u'nfs-a', u'cpu': 2, u'vmfolder': u'terraform-deploy',
      'key': u'testvm3')

      TASK [debug]
      *************************************
      ok: [terraform.rum.local] =>
      "vm_guest_facts":
      "changed": false,
      "msg": "All items completed",
      "results": [

      "_ansible_ignore_errors": null,
      "_ansible_item_result": true,
      "_ansible_no_log": false,
      "_ansible_parsed": true,
      "changed": false,
      "failed": false,
      "instance":
      "annotation": "",
      "current_snapshot": null,
      "customvalues": ,
      "guest_consolidation_needed": false,
      "guest_question": null,
      "guest_tools_status": "guestToolsRunning",
      "guest_tools_version": "10304",
      "hw_cores_per_socket": 1,
      "hw_datastores": [
      "nfs-b",
      "nfs-a"
      ],
      "hw_esxi_host": "esx-a.rum.local",
      "hw_eth0":
      "addresstype": "assigned",
      "ipaddresses": [
      "192.168.1.12",
      "fe80::250:56ff:feb8:d51c"
      ],
      "label": "Network adapter 1",
      "macaddress": "00:50:56:b8:d5:1c",
      "macaddress_dash": "00-50-56-b8-d5-1c",
      "summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
      ,
      "hw_files": [
      "[nfs-b] testvm4/testvm4.vmx",
      "[nfs-b] testvm4/testvm4.nvram",
      "[nfs-b] testvm4/testvm4.vmsd",
      "[nfs-b] testvm4/testvm4.vmxf",
      "[nfs-b] testvm4/testvm4.vmdk"
      ],
      "hw_folder": "/datacenter1/vm/terraform-deploy",
      "hw_guest_full_name": "CentOS 7 (64-bit)",
      "hw_guest_ha_state": null,
      "hw_guest_id": "centos7_64Guest",
      "hw_interfaces": [
      "eth0"
      ],
      "hw_is_template": false,
      "hw_memtotal_mb": 512,
      "hw_name": "testvm4",
      "hw_power_status": "poweredOn",
      "hw_processor_count": 1,
      "hw_product_uuid": "42387ae9-cac5-1faa-1e84-0859533dd2b0",
      "instance_uuid": "5038a877-e2db-1bfd-6439-78f6522a9049",
      "ipv4": "192.168.1.12",
      "ipv6": "fe80::250:56ff:feb8:d51c",
      "module_hw": true,
      "snapshots": []
      ,
      "invocation":
      "module_args":
      "datacenter": "datacenter1",
      "folder": "/vm",
      "hostname": "vcenter.rum.local",
      "name": "testvm4",
      "name_match": "first",
      "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
      "port": 443,
      "username": "administrator@vsphere.local",
      "uuid": null,
      "validate_certs": false

      ,
      "item":
      "key": "testvm4",
      "value":
      "cpu": 1,
      "datastore": "nfs-b",
      "mem": 512,
      "network": "T1-PRD",
      "vmfolder": "terraform-deploy"


      ,

      "_ansible_ignore_errors": null,
      "_ansible_item_result": true,
      "_ansible_no_log": false,
      "_ansible_parsed": true,
      "changed": false,
      "failed": false,
      "instance":
      "annotation": "",
      "current_snapshot": null,
      "customvalues": ,
      "guest_consolidation_needed": false,
      "guest_question": null,
      "guest_tools_status": "guestToolsRunning",
      "guest_tools_version": "10304",
      "hw_cores_per_socket": 1,
      "hw_datastores": [
      "nfs-a"
      ],
      "hw_esxi_host": "esx-a.rum.local",
      "hw_eth0":
      "addresstype": "assigned",
      "ipaddresses": [
      "192.168.1.16",
      "fe80::250:56ff:feb8:5e2c"
      ],
      "label": "Network adapter 1",
      "macaddress": "00:50:56:b8:5e:2c",
      "macaddress_dash": "00-50-56-b8-5e-2c",
      "summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
      ,
      "hw_files": [
      "[nfs-a] testvm3/testvm3.vmx",
      "[nfs-a] testvm3/testvm3.nvram",
      "[nfs-a] testvm3/testvm3.vmsd",
      "[nfs-a] testvm3/testvm3.vmxf",
      "[nfs-a] testvm3/testvm3.vmdk"
      ],
      "hw_folder": "/datacenter1/vm/terraform-deploy",
      "hw_guest_full_name": "CentOS 7 (64-bit)",
      "hw_guest_ha_state": null,
      "hw_guest_id": "centos7_64Guest",
      "hw_interfaces": [
      "eth0"
      ],
      "hw_is_template": false,
      "hw_memtotal_mb": 756,
      "hw_name": "testvm3",
      "hw_power_status": "poweredOn",
      "hw_processor_count": 2,
      "hw_product_uuid": "4238b6c3-a81a-cb51-a816-b83627bfcab0",
      "instance_uuid": "5038a0b1-f75a-f8cb-a872-344afdb1bc6f",
      "ipv4": "192.168.1.16",
      "ipv6": "fe80::250:56ff:feb8:5e2c",
      "module_hw": true,
      "snapshots": []
      ,
      "invocation":
      "module_args":
      "datacenter": "datacenter1",
      "folder": "/vm",
      "hostname": "vcenter.rum.local",
      "name": "testvm3",
      "name_match": "first",
      "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
      "port": 443,
      "username": "administrator@vsphere.local",
      "uuid": null,
      "validate_certs": false

      ,
      "item":
      "key": "testvm3",
      "value":
      "cpu": 2,
      "datastore": "nfs-a",
      "mem": 756,
      "network": "T2-TEST",
      "vmfolder": "terraform-deploy"



      ]











      share|improve this question














      I am writing a script where I deploy and configure VM's on a vSphere environment.



      After the deployment I want to gather the IP's of the VM's for DNS registration.
      Facts can be gathered for 2 or more VM's at the same time.
      But how do I then use the gathered data to output a VM name with IP address?



      For a single VM this works to get the IP, but when used with 2 VM's the variable is undefinied:



      - debug:
      var: vm_guest_facts.instance.ipv4


      Maybe my approach is wrong, but I am not really sure how else to do it.



      - name: Gather facts from recently deployed VM's

      vmware_guest_facts:
      validate_certs: False
      hostname: " vcenter_hostname "
      username: " vcenter_user "
      password: " vcenter_pass "
      datacenter: " datacenter "
      name: " item.key "
      register: vm_guest_facts
      with_dict: " vmdetails "

      - debug:
      var: vm_guest_facts


      Results (the hostname and folder is Terraform, but this example only uses Ansible):



      TASK [Gather facts from standalone ESXi server having datacenter as 'ha- 
      datacenter']

      ok: [terraform.rum.local] => (item='value': u'mem': 512, u'network': u'T1-
      PRD', u'datastore': u'nfs-b', u'cpu': 1, u'vmfolder': u'terraform-deploy',
      'key': u'testvm4')
      ok: [terraform.rum.local] => (item='value': u'mem': 756, u'network': u'T2-
      TEST', u'datastore': u'nfs-a', u'cpu': 2, u'vmfolder': u'terraform-deploy',
      'key': u'testvm3')

      TASK [debug]
      *************************************
      ok: [terraform.rum.local] =>
      "vm_guest_facts":
      "changed": false,
      "msg": "All items completed",
      "results": [

      "_ansible_ignore_errors": null,
      "_ansible_item_result": true,
      "_ansible_no_log": false,
      "_ansible_parsed": true,
      "changed": false,
      "failed": false,
      "instance":
      "annotation": "",
      "current_snapshot": null,
      "customvalues": ,
      "guest_consolidation_needed": false,
      "guest_question": null,
      "guest_tools_status": "guestToolsRunning",
      "guest_tools_version": "10304",
      "hw_cores_per_socket": 1,
      "hw_datastores": [
      "nfs-b",
      "nfs-a"
      ],
      "hw_esxi_host": "esx-a.rum.local",
      "hw_eth0":
      "addresstype": "assigned",
      "ipaddresses": [
      "192.168.1.12",
      "fe80::250:56ff:feb8:d51c"
      ],
      "label": "Network adapter 1",
      "macaddress": "00:50:56:b8:d5:1c",
      "macaddress_dash": "00-50-56-b8-d5-1c",
      "summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
      ,
      "hw_files": [
      "[nfs-b] testvm4/testvm4.vmx",
      "[nfs-b] testvm4/testvm4.nvram",
      "[nfs-b] testvm4/testvm4.vmsd",
      "[nfs-b] testvm4/testvm4.vmxf",
      "[nfs-b] testvm4/testvm4.vmdk"
      ],
      "hw_folder": "/datacenter1/vm/terraform-deploy",
      "hw_guest_full_name": "CentOS 7 (64-bit)",
      "hw_guest_ha_state": null,
      "hw_guest_id": "centos7_64Guest",
      "hw_interfaces": [
      "eth0"
      ],
      "hw_is_template": false,
      "hw_memtotal_mb": 512,
      "hw_name": "testvm4",
      "hw_power_status": "poweredOn",
      "hw_processor_count": 1,
      "hw_product_uuid": "42387ae9-cac5-1faa-1e84-0859533dd2b0",
      "instance_uuid": "5038a877-e2db-1bfd-6439-78f6522a9049",
      "ipv4": "192.168.1.12",
      "ipv6": "fe80::250:56ff:feb8:d51c",
      "module_hw": true,
      "snapshots": []
      ,
      "invocation":
      "module_args":
      "datacenter": "datacenter1",
      "folder": "/vm",
      "hostname": "vcenter.rum.local",
      "name": "testvm4",
      "name_match": "first",
      "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
      "port": 443,
      "username": "administrator@vsphere.local",
      "uuid": null,
      "validate_certs": false

      ,
      "item":
      "key": "testvm4",
      "value":
      "cpu": 1,
      "datastore": "nfs-b",
      "mem": 512,
      "network": "T1-PRD",
      "vmfolder": "terraform-deploy"


      ,

      "_ansible_ignore_errors": null,
      "_ansible_item_result": true,
      "_ansible_no_log": false,
      "_ansible_parsed": true,
      "changed": false,
      "failed": false,
      "instance":
      "annotation": "",
      "current_snapshot": null,
      "customvalues": ,
      "guest_consolidation_needed": false,
      "guest_question": null,
      "guest_tools_status": "guestToolsRunning",
      "guest_tools_version": "10304",
      "hw_cores_per_socket": 1,
      "hw_datastores": [
      "nfs-a"
      ],
      "hw_esxi_host": "esx-a.rum.local",
      "hw_eth0":
      "addresstype": "assigned",
      "ipaddresses": [
      "192.168.1.16",
      "fe80::250:56ff:feb8:5e2c"
      ],
      "label": "Network adapter 1",
      "macaddress": "00:50:56:b8:5e:2c",
      "macaddress_dash": "00-50-56-b8-5e-2c",
      "summary": "DVSwitch: 50 38 43 04 bb 97 81 76-81 51 a6 cd a4 39 2b 61"
      ,
      "hw_files": [
      "[nfs-a] testvm3/testvm3.vmx",
      "[nfs-a] testvm3/testvm3.nvram",
      "[nfs-a] testvm3/testvm3.vmsd",
      "[nfs-a] testvm3/testvm3.vmxf",
      "[nfs-a] testvm3/testvm3.vmdk"
      ],
      "hw_folder": "/datacenter1/vm/terraform-deploy",
      "hw_guest_full_name": "CentOS 7 (64-bit)",
      "hw_guest_ha_state": null,
      "hw_guest_id": "centos7_64Guest",
      "hw_interfaces": [
      "eth0"
      ],
      "hw_is_template": false,
      "hw_memtotal_mb": 756,
      "hw_name": "testvm3",
      "hw_power_status": "poweredOn",
      "hw_processor_count": 2,
      "hw_product_uuid": "4238b6c3-a81a-cb51-a816-b83627bfcab0",
      "instance_uuid": "5038a0b1-f75a-f8cb-a872-344afdb1bc6f",
      "ipv4": "192.168.1.16",
      "ipv6": "fe80::250:56ff:feb8:5e2c",
      "module_hw": true,
      "snapshots": []
      ,
      "invocation":
      "module_args":
      "datacenter": "datacenter1",
      "folder": "/vm",
      "hostname": "vcenter.rum.local",
      "name": "testvm3",
      "name_match": "first",
      "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
      "port": 443,
      "username": "administrator@vsphere.local",
      "uuid": null,
      "validate_certs": false

      ,
      "item":
      "key": "testvm3",
      "value":
      "cpu": 2,
      "datastore": "nfs-a",
      "mem": 756,
      "network": "T2-TEST",
      "vmfolder": "terraform-deploy"



      ]








      ansible vmware-vcenter






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 25 '18 at 19:35









      EwtEwt

      135




      135




















          1 Answer
          1






          active

          oldest

          votes


















          0














          You might want to use json_query like this. Here, I am gathering facts from vmware_guest_facts and registering output in no_vm_result. Then, using this no_vm_result with json_query to iterate over all results and grabbing ipv4 which can be used to do anything. This is pretty straight forward thing.



          ---
          - name: StackOverflow answer
          gather_facts: no
          vars_files:
          - vcsim_vars.yml
          vars:
          vm_list:
          - DC0_H0_VM0
          - DC0_H0_VM1
          hosts: localhost
          tasks:
          - name: Gather VMware guest facts
          vmware_guest_facts:
          hostname: " vcenter_server "
          username: " vcenter_user "
          password: " vcenter_pass "
          datacenter: DC0
          validate_certs: no
          name: " item "
          register: no_vm_result
          with_items: " vm_list "

          - name: Get IPv4 address of VMs to add to DNS configuration
          debug:
          msg: " json_query(s_query) "
          vars:
          s_query: "[?instance.hw_name == ' item '].instance.ipv4"
          with_items: " vm_list "





          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f913846%2fansible-vmware-guest-facts-use-facts-for-multple-vms%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            You might want to use json_query like this. Here, I am gathering facts from vmware_guest_facts and registering output in no_vm_result. Then, using this no_vm_result with json_query to iterate over all results and grabbing ipv4 which can be used to do anything. This is pretty straight forward thing.



            ---
            - name: StackOverflow answer
            gather_facts: no
            vars_files:
            - vcsim_vars.yml
            vars:
            vm_list:
            - DC0_H0_VM0
            - DC0_H0_VM1
            hosts: localhost
            tasks:
            - name: Gather VMware guest facts
            vmware_guest_facts:
            hostname: " vcenter_server "
            username: " vcenter_user "
            password: " vcenter_pass "
            datacenter: DC0
            validate_certs: no
            name: " item "
            register: no_vm_result
            with_items: " vm_list "

            - name: Get IPv4 address of VMs to add to DNS configuration
            debug:
            msg: " json_query(s_query) "
            vars:
            s_query: "[?instance.hw_name == ' item '].instance.ipv4"
            with_items: " vm_list "





            share|improve this answer



























              0














              You might want to use json_query like this. Here, I am gathering facts from vmware_guest_facts and registering output in no_vm_result. Then, using this no_vm_result with json_query to iterate over all results and grabbing ipv4 which can be used to do anything. This is pretty straight forward thing.



              ---
              - name: StackOverflow answer
              gather_facts: no
              vars_files:
              - vcsim_vars.yml
              vars:
              vm_list:
              - DC0_H0_VM0
              - DC0_H0_VM1
              hosts: localhost
              tasks:
              - name: Gather VMware guest facts
              vmware_guest_facts:
              hostname: " vcenter_server "
              username: " vcenter_user "
              password: " vcenter_pass "
              datacenter: DC0
              validate_certs: no
              name: " item "
              register: no_vm_result
              with_items: " vm_list "

              - name: Get IPv4 address of VMs to add to DNS configuration
              debug:
              msg: " json_query(s_query) "
              vars:
              s_query: "[?instance.hw_name == ' item '].instance.ipv4"
              with_items: " vm_list "





              share|improve this answer

























                0












                0








                0







                You might want to use json_query like this. Here, I am gathering facts from vmware_guest_facts and registering output in no_vm_result. Then, using this no_vm_result with json_query to iterate over all results and grabbing ipv4 which can be used to do anything. This is pretty straight forward thing.



                ---
                - name: StackOverflow answer
                gather_facts: no
                vars_files:
                - vcsim_vars.yml
                vars:
                vm_list:
                - DC0_H0_VM0
                - DC0_H0_VM1
                hosts: localhost
                tasks:
                - name: Gather VMware guest facts
                vmware_guest_facts:
                hostname: " vcenter_server "
                username: " vcenter_user "
                password: " vcenter_pass "
                datacenter: DC0
                validate_certs: no
                name: " item "
                register: no_vm_result
                with_items: " vm_list "

                - name: Get IPv4 address of VMs to add to DNS configuration
                debug:
                msg: " json_query(s_query) "
                vars:
                s_query: "[?instance.hw_name == ' item '].instance.ipv4"
                with_items: " vm_list "





                share|improve this answer













                You might want to use json_query like this. Here, I am gathering facts from vmware_guest_facts and registering output in no_vm_result. Then, using this no_vm_result with json_query to iterate over all results and grabbing ipv4 which can be used to do anything. This is pretty straight forward thing.



                ---
                - name: StackOverflow answer
                gather_facts: no
                vars_files:
                - vcsim_vars.yml
                vars:
                vm_list:
                - DC0_H0_VM0
                - DC0_H0_VM1
                hosts: localhost
                tasks:
                - name: Gather VMware guest facts
                vmware_guest_facts:
                hostname: " vcenter_server "
                username: " vcenter_user "
                password: " vcenter_pass "
                datacenter: DC0
                validate_certs: no
                name: " item "
                register: no_vm_result
                with_items: " vm_list "

                - name: Get IPv4 address of VMs to add to DNS configuration
                debug:
                msg: " json_query(s_query) "
                vars:
                s_query: "[?instance.hw_name == ' item '].instance.ipv4"
                with_items: " vm_list "






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Oct 10 '18 at 11:41









                Abhijeet KasurdeAbhijeet Kasurde

                895720




                895720



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f913846%2fansible-vmware-guest-facts-use-facts-for-multple-vms%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                    Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                    What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company