vmware.vmware_rest.network_moid lookup – Look up MoID for vSphere network objects using vCenter REST API
Note
This lookup plugin is part of the vmware.vmware_rest collection (version 2.3.1).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install vmware.vmware_rest
.
You need further requirements to be able to use this lookup plugin,
see Requirements for details.
To use it in a playbook, specify: vmware.vmware_rest.network_moid
.
New in vmware.vmware_rest 2.1.0
Synopsis
Returns Managed Object Reference (MoID) of the vSphere network object contained in the specified path.
Requirements
The below requirements are needed on the local controller node that executes this lookup.
vSphere 7.0.2 or greater
python >= 3.6
aiohttp
Terms
Parameter |
Comments |
---|---|
Path to query. |
Keyword parameters
This describes keyword parameters of the lookup. These are the values key1=value1
, key2=value2
and so on in the following
examples: lookup('vmware.vmware_rest.network_moid', key1=value1, key2=value2, ...)
and query('vmware.vmware_rest.network_moid', key1=value1, key2=value2, ...)
Parameter |
Comments |
---|---|
The hostname or IP address of the vSphere vCenter. If the value is not specified in the task, the value of environment variable |
|
The vSphere vCenter password. If the value is not specified in the task, the value of environment variable |
|
You can use this optional parameter to set the location of a log file. This file will be used to record the HTTP REST interaction. The file will be stored on the host that run the module. If the value is not specified in the task, the value of environment variable |
|
The vSphere vCenter username. If the value is not specified in the task, the value of environment variable |
|
Allows connection when SSL certificates are not valid. Set to If the value is not specified in the task, the value of environment variable Choices:
|
Notes
Note
When keyword and positional parameters are used together, positional parameters must be listed before keyword parameters:
lookup('vmware.vmware_rest.network_moid', term1, term2, key1=value1, key2=value2)
andquery('vmware.vmware_rest.network_moid', term1, term2, key1=value1, key2=value2)
Examples
# lookup sample
- name: set connection info
ansible.builtin.set_fact:
connection_args:
vcenter_hostname: "vcenter.test"
vcenter_username: "[email protected]"
vcenter_password: "1234"
- name: lookup MoID of the object
ansible.builtin.debug: msg="{{ lookup('vmware.vmware_rest.network_moid', '/my_dc/network/test_network', **connection_args) }}"
- name: lookup MoID of the object inside the path
ansible.builtin.debug: msg="{{ lookup('vmware.vmware_rest.network_moid', '/my_dc/network/') }}"
Return Value
Key |
Description |
---|---|
MoID of the vSphere network object Returned: success Sample: |