netbox.netbox.netbox_power_outlet – Create, update or delete power outlets 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_power_outlet
.
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 power port within Netbox with only required information
netbox_power_outlet:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Power Outlet
device: Test Device
state: present
- name: Update power port with other fields
netbox_power_outlet:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Power Outlet
device: Test Device
type: iec-60320-c6
power_port: Test Power Port
feed_leg: A
description: power port description
state: present
- name: Delete power port within netbox
netbox_power_outlet:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Power Outlet
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)