Skip to content

Commit 678bc02

Browse files
authored
Release 3.8.1 (#842)
1 parent c8352fd commit 678bc02

File tree

76 files changed

+137
-77
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+137
-77
lines changed

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ version: 2
33
# configuration: docs/conf.py
44

55
python:
6-
version: 3.6
6+
version: 3.8
77
install:
88
- requirements: docs/requirements.txt

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ NetBox.NetBox Release Notes
55
.. contents:: Topics
66

77

8+
v3.8.1
9+
======
10+
11+
Minor Changes
12+
-------------
13+
14+
- nb_inventory - Allow for jinja templating [#834](https://github.com/netbox-community/ansible_modules/pull/834)
15+
16+
Bugfixes
17+
--------
18+
19+
- Fix idempotency with custom_fields [#839](https://github.com/netbox-community/ansible_modules/pull/839)
20+
821
v3.8.0
922
======
1023

changelogs/changelog.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,3 +706,13 @@ releases:
706706
- netbox_cable - Change length to float from int [#828](https://github.com/netbox-community/ansible_modules/pull/828)
707707
- netbox_location - Add tenant to module [#829](https://github.com/netbox-community/ansible_modules/pull/829)
708708
release_date: '2022-09-19'
709+
3.8.1:
710+
changes:
711+
bugfixes:
712+
- Fix idempotency with custom_fields [#839](https://github.com/netbox-community/ansible_modules/pull/839)
713+
minor_changes:
714+
- nb_inventory - Allow for jinja templating [#834](https://github.com/netbox-community/ansible_modules/pull/834)
715+
trivial:
716+
- Update CI to include NetBox 3.3 [#841](https://github.com/netbox-community/ansible_modules/pull/841)
717+
- Update documentation to show exclusion filter [#837](https://github.com/netbox-community/ansible_modules/pull/837)
718+
release_date: '2022-10-17'

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author = "Mikhail Yohman <@FragmentedPacket>"
2828

2929
# The full version, including alpha/beta/rc tags
30-
release = "3.8.0"
30+
release = "3.8.1"
3131

3232

3333
# -- General configuration ---------------------------------------------------

docs/plugins/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Netbox.Netbox
77
=============
88

9-
Collection version 3.8.0
9+
Collection version 3.8.1
1010

1111
.. contents::
1212
:local:

docs/plugins/nb_inventory_inventory.rst

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.nb_inventory inventory -- NetBox inventory source
4343
.. Collection note
4444
4545
.. note::
46-
This inventory plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This inventory plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949

@@ -710,7 +710,9 @@ Parameters
710710

711711
<div class="ansible-option-cell">
712712

713-
List of parameters passed to the query string for devices (Multiple values may be separated by commas)
713+
List of parameters passed to the query string for devices (Multiple values may be separated by commas).
714+
715+
You can also use Jinja2 templates.
714716

715717

716718
.. rst-class:: ansible-option-line
@@ -1086,6 +1088,8 @@ Parameters
10861088
- :ansible-option-choices-entry:`is\_virtual`
10871089
- :ansible-option-choices-entry:`services`
10881090
- :ansible-option-choices-entry:`status`
1091+
- :ansible-option-choices-entry:`time\_zone`
1092+
- :ansible-option-choices-entry:`utc\_offset`
10891093

10901094
.. rst-class:: ansible-option-line
10911095

@@ -1836,7 +1840,9 @@ Parameters
18361840

18371841
<div class="ansible-option-cell">
18381842

1839-
List of parameters passed to the query string for both devices and VMs (Multiple values may be separated by commas)
1843+
List of parameters passed to the query string for both devices and VMs (Multiple values may be separated by commas).
1844+
1845+
You can also use Jinja2 templates.
18401846

18411847

18421848
.. rst-class:: ansible-option-line
@@ -2307,7 +2313,9 @@ Parameters
23072313

23082314
<div class="ansible-option-cell">
23092315

2310-
List of parameters passed to the query string for VMs (Multiple values may be separated by commas)
2316+
List of parameters passed to the query string for VMs (Multiple values may be separated by commas).
2317+
2318+
You can also use Jinja2 templates.
23112319

23122320

23132321
.. rst-class:: ansible-option-line
@@ -2349,8 +2357,11 @@ Examples
23492357
- role: network-edge-router
23502358
device_query_filters:
23512359
- has_primary_ip: 'true'
2360+
- tenant__n: internal
23522361

23532362
# has_primary_ip is a useful way to filter out patch panels and other passive devices
2363+
# Adding '__n' to a field searches for the negation of the value.
2364+
# The above searches for devices that are NOT "tenant = internal"
23542365

23552366
# Query filters are passed directly as an argument to the fetching queries.
23562367
# You can repeat tags in the query string.
@@ -2406,6 +2417,32 @@ Examples
24062417
NETBOX_API: '{{ NETBOX_API }}'
24072418
NETBOX_TOKEN: '{{ NETBOX_TOKEN }}'
24082419

2420+
# Example of time_zone and utc_offset usage
2421+
2422+
plugin: netbox.netbox.nb_inventory
2423+
api_endpoint: http://localhost:8000
2424+
token: <insert token>
2425+
validate_certs: True
2426+
config_context: True
2427+
group_by:
2428+
- site
2429+
- role
2430+
- time_zone
2431+
- utc_offset
2432+
device_query_filters:
2433+
- has_primary_ip: 'true'
2434+
- manufacturer_id: 1
2435+
2436+
# using group by time_zone, utc_offset it will group devices in ansible groups depending on time zone configured on site.
2437+
# time_zone gives grouping like:
2438+
# - "time_zone_Europe_Bucharest"
2439+
# - "time_zone_Europe_Copenhagen"
2440+
# - "time_zone_America_Denver"
2441+
# utc_offset gives grouping like:
2442+
# - "time_zone_utc_minus_7"
2443+
# - "time_zone_utc_plus_1"
2444+
# - "time_zone_utc_plus_10"
2445+
24092446

24102447

24112448

docs/plugins/nb_lookup_lookup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.nb_lookup lookup -- Queries and returns elements from NetBox
4343
.. Collection note
4444
4545
.. note::
46-
This lookup plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This lookup plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this lookup plugin,

docs/plugins/netbox_aggregate_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_aggregate module -- Creates or removes aggregates from NetB
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_cable_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cable module -- Create, update or delete cables within NetB
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_circuit_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_circuit module -- Create, update or delete circuits within
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_circuit_termination_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_circuit_termination module -- Create, update or delete circ
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_circuit_type_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_circuit_type module -- Create, update or delete circuit typ
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_cluster_group_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cluster_group module -- Create, update or delete cluster gr
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_cluster_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cluster module -- Create, update or delete clusters within
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_cluster_type_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cluster_type module -- Create, update or delete cluster typ
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_config_context_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_config_context module -- Creates, updates or deletes config
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_console_port_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_console_port module -- Create, update or delete console por
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_console_port_template_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_console_port_template module -- Create, update or delete co
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_console_server_port_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_console_server_port module -- Create, update or delete cons
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_console_server_port_template_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_console_server_port_template module -- Create, update or de
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_contact_group_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_contact_group module -- Creates or removes contact groups f
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_contact_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_contact module -- Creates or removes contacts from NetBox
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_contact_role_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_contact_role module -- Creates or removes contact roles fro
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_custom_field_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_custom_field module -- Creates, updates or deletes custom f
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_custom_link_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_custom_link module -- Creates, updates or deletes custom li
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_bay_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device_bay module -- Create, update or delete device bays w
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_bay_template_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device_bay_template module -- Create, update or delete devi
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_interface_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device_interface module -- Creates or removes interfaces on
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_interface_template_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device_interface_template module -- Creates or removes inte
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device module -- Create, update or delete devices within Ne
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_role_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device_role module -- Create, update or delete devices role
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_device_type_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_device_type module -- Create, update or delete device types
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

docs/plugins/netbox_export_template_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_export_template module -- Creates, updates or deletes expor
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,

0 commit comments

Comments
 (0)