networktocode.nautobot.vlan module – Create, update or delete vlans within Nautobot¶
Note
This module is part of the networktocode.nautobot collection (version 4.5.0).
To install it, use: ansible-galaxy collection install networktocode.nautobot
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: networktocode.nautobot.vlan
.
New in networktocode.nautobot 1.0.0
Synopsis¶
Creates, updates or removes vlans from Nautobot
Requirements¶
The below requirements are needed on the host that executes this module.
pynautobot
Parameters¶
Parameter |
Comments |
---|---|
API Version Nautobot REST API |
|
Must exist in Nautobot and in key/value format |
|
The description of the vlan |
|
The name of the vlan |
|
This can be used to override the specified values in ALLOWED_QUERY_PARAMS that is defined in plugins/module_utils/utils.py and provides control to users on what may make an object unique in their environment. |
|
The site the VLAN will be associated to |
|
Use Choices: |
|
The status of the vlan Required if state=present and does not exist yet |
|
Any tags that this item may need to be associated with |
|
The tenant that the vlan will be assigned to |
|
The token created within Nautobot to authorize API access |
|
The URL of the Nautobot instance resolvable by the Ansible host (for example: http://nautobot.example.com:8000) |
|
If Default: :ansible-option-default:`true` |
|
The VLAN ID |
|
The VLAN group the VLAN will be associated to |
|
The role of the VLAN. |
Notes¶
Note
Tags should be defined as a YAML list
This should be ran with connection
local
and hostslocalhost
Examples¶
- name: "Test Nautobot modules"
connection: local
hosts: localhost
gather_facts: False
tasks:
- name: Create vlan within Nautobot with only required information
networktocode.nautobot.vlan:
url: http://nautobot.local
token: thisIsMyToken
name: Test VLAN
vid: 400
status: active
state: present
- name: Delete vlan within nautobot
networktocode.nautobot.vlan:
url: http://nautobot.local
token: thisIsMyToken
name: Test VLAN
vid: 400
status: active
state: absent
- name: Create vlan with all information
networktocode.nautobot.vlan:
url: http://nautobot.local
token: thisIsMyToken
name: Test VLAN
vid: 400
site: Test Site
group: Test VLAN Group
tenant: Test Tenant
status: Deprecated
vlan_role: Test VLAN Role
description: Just a test
tags:
- Schnozzberry
state: present
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Message indicating failure or info about what has been achieved Returned: always |
|
Serialized object as created or already existent within Nautobot Returned: success (when state=present) |