Skip to content

Commit e2f9a94

Browse files
authored
Merge pull request #1130 from netbox-community/devel
Release 3.16.0
2 parents c7ed089 + 75dcaf1 commit e2f9a94

File tree

196 files changed

+750
-19480
lines changed

Some content is hidden

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

196 files changed

+750
-19480
lines changed

.github/workflows/main.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ jobs:
7676
fail-fast: false
7777
matrix:
7878
include:
79-
- VERSION: "v3.3"
80-
NETBOX_DOCKER_VERSION: 2.3.0
8179
- VERSION: "v3.4"
8280
NETBOX_DOCKER_VERSION: 2.5.3
8381
- VERSION: "v3.5"
@@ -109,7 +107,7 @@ jobs:
109107
python-version: ${{ env.python-version }}
110108

111109
- name: Install and configure Poetry
112-
uses: snok/[email protected].3
110+
uses: snok/[email protected].4
113111
with:
114112
virtualenvs-create: false
115113

CHANGELOG.rst

+23
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ NetBox.NetBox Release Notes
55
.. contents:: Topics
66

77

8+
v3.16.0
9+
=======
10+
11+
Minor Changes
12+
-------------
13+
14+
- nb_inventory - Add facility group_by option [#1059](https://github.com/netbox-community/ansible_modules/pull/1059)
15+
- nb_inventory - Enable ansible-vault strings in config-context data [#1114](https://github.com/netbox-community/ansible_modules/pull/1114)
16+
- netbox_platform - Add config_template option to netbox_platform [#1119](https://github.com/netbox-community/ansible_modules/pull/1119)
17+
- netbox_power_port_template - Add option module_type to netbox_power_port_template [#1105](https://github.com/netbox-community/ansible_modules/pull/1105)
18+
19+
Bugfixes
20+
--------
21+
22+
- Improve error reporting for missing module [#1126](https://github.com/netbox-community/ansible_modules/pull/1126)
23+
- nb_inventory - Fix API cache failure [#1111](https://github.com/netbox-community/ansible_modules/pull/1111)
24+
- nb_lookup - Allow multiple IDs in nb_lookup [#1042](https://github.com/netbox-community/ansible_modules/pull/1042)
25+
826
v3.15.0
927
=======
1028

@@ -20,6 +38,11 @@ Bugfixes
2038

2139
- netbox_ device - Adjust device_role to role for NetBox 3.6 [#1066](https://github.com/netbox-community/ansible_modules/pull/1066)
2240

41+
New Modules
42+
-----------
43+
44+
- netbox.netbox.netbox_config_template - Creates, updates, or removed a config template from NetBox
45+
2346
v3.14.0
2447
=======
2548

changelogs/changelog.yaml

+13-1
Original file line numberDiff line numberDiff line change
@@ -829,5 +829,17 @@ releases:
829829
modules:
830830
- description: Creates, updates, or removed a config template from NetBox
831831
name: netbox_config_template
832-
namesapce: ''
832+
namespace: ''
833833
release_date: '2023-10-18'
834+
3.16.0:
835+
changes:
836+
bugfixes:
837+
- nb_lookup - Allow multiple IDs in nb_lookup [#1042](https://github.com/netbox-community/ansible_modules/pull/1042)
838+
- Improve error reporting for missing module [#1126](https://github.com/netbox-community/ansible_modules/pull/1126)
839+
- nb_inventory - Fix API cache failure [#1111](https://github.com/netbox-community/ansible_modules/pull/1111)
840+
minor_changes:
841+
- nb_inventory - Add facility group_by option [#1059](https://github.com/netbox-community/ansible_modules/pull/1059)
842+
- netbox_power_port_template - Add option module_type to netbox_power_port_template [#1105](https://github.com/netbox-community/ansible_modules/pull/1105)
843+
- nb_inventory - Enable ansible-vault strings in config-context data [#1114](https://github.com/netbox-community/ansible_modules/pull/1114)
844+
- netbox_platform - Add config_template option to netbox_platform [#1119](https://github.com/netbox-community/ansible_modules/pull/1119)
845+
release_date: '2023-12-10'

docs/conf.py

+1-1
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.15.0"
30+
release = "3.16.0"
3131

3232

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

docs/plugins/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Netbox.Netbox
77
=============
88

9-
Collection version 3.15.0
9+
Collection version 3.16.0
1010

1111
.. contents::
1212
:local:

docs/plugins/nb_inventory_inventory.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.nb_inventory inventory -- NetBox inventory source
4242
.. Collection note
4343
4444
.. note::
45-
This inventory plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This inventory plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

@@ -1097,6 +1097,7 @@ Parameters
10971097
- :ansible-option-choices-entry:`"status"`
10981098
- :ansible-option-choices-entry:`"time\_zone"`
10991099
- :ansible-option-choices-entry:`"utc\_offset"`
1100+
- :ansible-option-choices-entry:`"facility"`
11001101

11011102

11021103
.. rst-class:: ansible-option-line

docs/plugins/nb_lookup_lookup.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.nb_lookup lookup -- Queries and returns elements from NetBox
4242
.. Collection note
4343
4444
.. note::
45-
This lookup plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This lookup plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_aggregate_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_aggregate module -- Creates or removes aggregates from NetB
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_asn_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_asn module -- Create, update or delete ASNs within NetBox
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_cable_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_cable module -- Create, update or delete cables within NetB
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_circuit_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_circuit module -- Create, update or delete circuits within
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_circuit_termination_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_circuit_termination module -- Create, update or delete circ
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_circuit_type_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_circuit_type module -- Create, update or delete circuit typ
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_cluster_group_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_cluster_group module -- Create, update or delete cluster gr
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_cluster_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_cluster module -- Create, update or delete clusters within
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_cluster_type_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_cluster_type module -- Create, update or delete cluster typ
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_config_context_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_config_context module -- Creates, updates or deletes config
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_config_template_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_config_template module -- Creates or removes config templat
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_console_port_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_console_port module -- Create, update or delete console por
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_console_port_template_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_console_port_template module -- Create, update or delete co
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_console_server_port_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_console_server_port module -- Create, update or delete cons
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_console_server_port_template_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_console_server_port_template module -- Create, update or de
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_contact_group_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_contact_group module -- Creates or removes contact groups f
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_contact_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_contact module -- Creates or removes contacts from NetBox
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_contact_role_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_contact_role module -- Creates or removes contact roles fro
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_custom_field_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_custom_field module -- Creates, updates or deletes custom f
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_custom_link_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_custom_link module -- Creates, updates or deletes custom li
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_bay_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device_bay module -- Create, update or delete device bays w
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_bay_template_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device_bay_template module -- Create, update or delete devi
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_interface_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device_interface module -- Creates or removes interfaces on
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_interface_template_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device_interface_template module -- Creates or removes inte
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device module -- Create, update or delete devices within Ne
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_role_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device_role module -- Create, update or delete devices role
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_device_type_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_device_type module -- Create, update or delete device types
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_export_template_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_export_template module -- Creates, updates or deletes expor
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

docs/plugins/netbox_fhrp_group_assignment_module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ netbox.netbox.netbox_fhrp_group_assignment module -- Create, update or delete FH
4242
.. Collection note
4343
4444
.. note::
45-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.15.0).
45+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.16.0).
4646

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

0 commit comments

Comments
 (0)