netbox.netbox.netbox_console_port – Create, update or delete console ports within Netbox¶
Note
This plugin is part of the netbox.netbox collection (version 1.2.1).
To install it use: ansible-galaxy collection install netbox.netbox
.
To use it in a playbook, specify: netbox.netbox.netbox_console_port
.
New in version 0.2.3: of netbox.netbox
Parameters¶
Notes¶
Note
Tags should be defined as a YAML list
This should be ran with connection
local
and hostslocalhost
Examples¶
- name: "Test Netbox modules"
connection: local
hosts: localhost
gather_facts: False
tasks:
- name: Create console port within Netbox with only required information
netbox_console_port:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Console Port
device: Test Device
state: present
- name: Update console port with other fields
netbox_console_port:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Console Port
device: Test Device
type: usb-a
description: console port description
state: present
- name: Delete console port within netbox
netbox_console_port:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Console Port
device: Test Device
state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Tobias Groß (@toerb)