netbox.netbox.netbox_device_bay_template – Create, update or delete device bay templates within Netbox¶
Note
This plugin is part of the netbox.netbox collection (version 2.1.0).
To install it use: ansible-galaxy collection install netbox.netbox
.
To use it in a playbook, specify: netbox.netbox.netbox_device_bay_template
.
New in version 0.3.0: 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 device bay template within Netbox with only required information
netbox_device_bay_template:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: device bay template One
device_type: Device Type One
state: present
- name: Delete device bay template within netbox
netbox_device_bay_template:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: device bay template One
device_type: Device Type One
state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Tobias Groß (@toerb)