netbox.netbox.netbox_provider – Create, update or delete providers 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_provider
.
New in version 0.1.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 provider within Netbox with only required information
netbox_provider:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Provider
state: present
- name: Update provider with other fields
netbox_provider:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Provider
asn: 65001
account: 200129104
portal_url: http://provider.net
noc_contact: [email protected]
admin_contact: [email protected]
comments: "BAD PROVIDER"
state: present
- name: Delete provider within netbox
netbox_provider:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: Test Provider
state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Mikhail Yohman (@FragmentedPacket)