netbox.netbox.netbox_custom_field module – Creates, updates or deletes custom fields within NetBox
Note
This module is part of the netbox.netbox collection (version 3.20.0).
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install netbox.netbox
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: netbox.netbox.netbox_custom_field
.
New in netbox.netbox 3.6.0
Synopsis
Creates, updates or removes custom fields from NetBox
Requirements
The below requirements are needed on the host that executes this module.
pynetbox
Parameters
Parameter |
Comments |
---|---|
Certificate path |
|
Defines the custom field |
|
The name of the choice set to use (for selection fields) |
|
The content type(s) to apply this custom field to |
|
Default value of the custom field |
|
Description of the custom field |
|
Filter logic of the custom field |
|
The group to associate the custom field with |
|
Label of the custom field |
|
Name of the custom field |
|
The object type of the custom field (if any) |
|
The content type(s) to apply this custom field to (NetBox 4.0+) |
|
The object type of the custom field (if any) (NetBox 4.0+) |
|
Whether the custom field is required |
|
Weighting for search. Lower values are considered more important. Fields with a search weight of zero will be ignored. |
|
The maximum allowed value (for numeric fields) |
|
The minimum allowed value (for numeric fields) |
|
The regular expression to enforce on text fields |
|
Fields with higher weights appear lower in a form |
|
The NetBox API token. |
|
The URL of the NetBox instance. Must be accessible by the Ansible control host. |
|
This can be used to override the specified values in ALLOWED_QUERY_PARAMS that are defined in plugins/module_utils/netbox_utils.py and provides control to users on what may make an object unique in their environment. |
|
If This should only be used on personally controlled sites using a self-signed certificates. :ansible-option-default-bold:`Default:` :ansible-option-default:`true` |
Notes
Note
This should be ran with connection
local
and hostslocalhost
Examples
- name: "Test NetBox custom_fields module"
connection: local
hosts: localhost
tasks:
- name: Create a custom field on device and virtual machine
netbox.netbox.netbox_custom_field:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
content_types:
- dcim.device
- virtualization.virtualmachine
name: A Custom Field
type: text
- name: Create a custom field of type selection
netbox.netbox.netbox_custom_field:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: "Custom_Field"
content_types:
- dcim.device
- virtualization.virtualmachine
type: select
choice_set: A Choice Set name
- name: Update the custom field to make it required
netbox.netbox.netbox_custom_field:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: A Custom Field
required: true
- name: Update the custom field to make it read only
netbox.netbox.netbox_custom_field:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: A Custom Field
ui_visibility: read-only
- name: Delete the custom field
netbox.netbox.netbox_custom_field:
netbox_url: http://netbox.local
netbox_token: thisIsMyToken
data:
name: A Custom Field
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Serialized object as created/existent/updated/deleted within NetBox |
|
Message indicating failure or info about what has been achieved |