community.proxmox.proxmox_vnet module – Manage virtual networks in Proxmox SDN.
Note
This module is part of the community.proxmox collection (version 1.4.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.proxmox.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.proxmox.proxmox_vnet.
New in community.proxmox 1.4.0
Synopsis
Create, update, or delete virtual networks in Proxmox SDN.
Configure network isolation, VLAN awareness, and other network settings.
Requirements
The below requirements are needed on the host that executes this module.
proxmoxer >= 2.0
requests
Parameters
Parameter |
Comments |
|---|---|
An optional alias for the virtual network. |
|
Specify the target host of the Proxmox VE cluster. Uses the |
|
Specify the password to authenticate with. Uses the |
|
Specify the target port of the Proxmox VE cluster. Uses the |
|
Specify the token ID. Uses the |
|
Specify the token secret. Uses the |
|
Specify the user to authenticate with. Uses the |
|
A list of settings you want to delete. |
|
Enable isolation of ports within the virtual network. Choices:
|
|
The token for unlocking the global SDN configuration. |
|
Desired state of the virtual network. Choices:
|
|
Tag for the virtual network. |
|
If This should only be used on personally controlled sites using self-signed certificates. Uses the Choices:
|
|
Enable VLAN awareness for the virtual network. Choices:
|
|
The name of the virtual network to be managed. |
|
zone for the virtual network. |
Attributes
Attribute |
Support |
Description |
|---|---|---|
Action group: community.proxmox.proxmox |
Use |
|
Support: none |
Can run in |
|
Support: none |
Will return details on what has changed (or possibly needs changing in |
Examples
- name: Create a vnet
community.proxmox.proxmox_vnet:
api_user: "{{ pc.proxmox.api_user }}"
api_token_id: "{{ pc.proxmox.api_token_id }}"
api_token_secret: "{{ vault.proxmox.api_token_secret }}"
api_host: "{{ pc.proxmox.api_host }}"
validate_certs: false
vnet: anstest
zone: ans1
state: present
- name: Update a vnet
community.proxmox.proxmox_vnet:
api_user: "{{ pc.proxmox.api_user }}"
api_token_id: "{{ pc.proxmox.api_token_id }}"
api_token_secret: "{{ vault.proxmox.api_token_secret }}"
api_host: "{{ pc.proxmox.api_host }}"
validate_certs: false
vnet: anstest
zone: ans1
alias: anst
state: present
update: true
- name: Delete a vnet
community.proxmox.proxmox_vnet:
api_user: "{{ pc.proxmox.api_user }}"
api_token_id: "{{ pc.proxmox.api_token_id }}"
api_token_secret: "{{ vault.proxmox.api_token_secret }}"
api_host: "{{ pc.proxmox.api_host }}"
validate_certs: false
vnet: anstest
zone: ans1
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
vnet name which was created/updated/deleted. Returned: on success Sample: |