community.vmware.vmware_dvswitch – Create or remove a Distributed Switch
Note
This plugin is part of the community.vmware collection (version 1.17.0).
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 community.vmware
.
To use it in a playbook, specify: community.vmware.vmware_dvswitch
.
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.6
PyVmomi
Parameters
Parameter |
Comments |
---|---|
Dictionary which configures administrator contact name and description for the Distributed Switch. |
|
Description or other details. |
|
Administrator name. |
|
The name of the datacenter that will contain the Distributed Switch. This parameter is optional, if Mutually exclusive with |
|
Description of the Distributed Switch. |
|
Select the discovery operation. Required parameter for Required only if Choices:
|
|
Link discovery protocol between Cisco and Link Layer discovery. Required parameter for Required only if
Choices:
|
|
Destination folder, absolute path to place dvswitch in. The folder should include the datacenter. This parameter is case sensitive. This parameter is optional, if Examples:
|
|
Dictionary which configures Health Check for the Distributed Switch. Default: {“teaming_failover”: false, “teaming_failover_interval”: 0, “vlan_mtu”: false, “vlan_mtu_interval”: 0} |
|
Teaming and failover health check. Choices:
|
|
Teaming and failover health check interval (minutes). The default value is 1 in the vSphere Client if the Teaming and failover health check is enabled. Default: 0 |
|
VLAN and MTU health check. Choices:
|
|
VLAN and MTU health check interval (minutes). The default value is 1 in the vSphere Client if the VLAN and MTU health check is enabled. Default: 0 |
|
The hostname or IP address of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
The switch maximum transmission unit. Required parameter for Required only if Accepts value between 1280 to 9000 (both inclusive). Default: 1500 |
|
The multicast filtering mode.
Choices:
|
|
Dictionary which configures the different default security values for portgroups. If set, these options are inherited by the portgroups of the DVS. |
|
Indicates whether forged transmits are allowed. Choices:
|
|
Indicates whether mac changes are allowed. Choices:
|
|
Indicates whether promiscuous mode is allowed. Choices:
|
|
The password of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
The port number of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. Default: 443 |
|
Address of a proxy that will receive all HTTPS requests and relay them. The format is a hostname or a IP. If the value is not specified in the task, the value of environment variable This feature depends on a version of pyvmomi greater than v6.7.1.2018.12 |
|
Port of the HTTP proxy that will receive all HTTPS requests and relay them. If the value is not specified in the task, the value of environment variable |
|
If set to If set to Choices:
|
|
The name of the distribute vSwitch to create or remove. |
|
The version of the Distributed Switch to create. The version must match the version of the ESXi hosts you want to connect. The version of the vCenter server is used if not specified. Required only if |
|
The prefix used for the naming of the uplinks. Only valid if the Distributed Switch will be created. Not used if the Distributed Switch is already present. Uplinks are created as Uplink 1, Uplink 2, etc. pp. by default. Default: “Uplink “ |
|
Quantity of uplink per ESXi host added to the Distributed Switch. The uplink quantity can be increased or decreased, but a decrease will only be successfull if the uplink isn’t used by a portgroup. Required parameter for Required only if |
|
The username of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
Allows connection when SSL certificates are not valid. Set to If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. If set to Choices:
|
Notes
Note
Tested on vSphere 6.5, 6.7 and 7.0
All modules requires API write access and hence is not supported on a free ESXi license.
Examples
- name: Create dvSwitch
community.vmware.vmware_dvswitch:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
datacenter: '{{ datacenter }}'
switch: dvSwitch
version: 6.0.0
mtu: 9000
uplink_quantity: 2
discovery_protocol: lldp
discovery_operation: both
state: present
delegate_to: localhost
- name: Create dvSwitch with all options
community.vmware.vmware_dvswitch:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
datacenter: '{{ datacenter }}'
switch: dvSwitch
version: 6.5.0
mtu: 9000
uplink_quantity: 2
uplink_prefix: 'Uplink_'
discovery_protocol: cdp
discovery_operation: both
multicast_filtering_mode: snooping
health_check:
vlan_mtu: true
vlan_mtu_interval: 1
teaming_failover: true
teaming_failover_interval: 1
state: present
delegate_to: localhost
- name: Delete dvSwitch
community.vmware.vmware_dvswitch:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
datacenter: '{{ datacenter }}'
switch: dvSwitch
state: absent
delegate_to: localhost
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
information about performed operation Returned: always Sample: {“changed”: false, “contact”: null, “contact_details”: null, “description”: null, “discovery_operation”: “both”, “discovery_protocol”: “cdp”, “dvswitch”: “test”, “health_check_teaming”: false, “health_check_teaming_interval”: 0, “health_check_vlan”: false, “health_check_vlan_interval”: 0, “mtu”: 9000, “multicast_filtering_mode”: “basic”, “result”: “DVS already configured properly”, “uplink_quantity”: 2, “uplinks”: [“Uplink_1”, “Uplink_2”], “version”: “6.6.0”} |
Authors
Joseph Callen (@jcpowermac)
Abhijeet Kasurde (@Akasurde)
Christian Kotte (@ckotte)