You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ``pynetbox`` changed to using ``requests.Session()`` to manage the HTTP session
62
62
which broke passing in ``ssl_verify`` when building the NetBox API client.
63
63
This PR makes ``pynetbox 5.0.4+`` the new required version of `pynetbox` for
@@ -90,9 +90,9 @@ Minor Changes
90
90
91
91
- Adds ``discovered`` field to ``netbox_inventory_item`` (https://github.com/netbox-community/ansible_modules/issues/187)
92
92
- Adds ``query_params`` to all modules to allow users to define the ``query_params`` (https://github.com/netbox-community/ansible_modules/issues/215)
93
-
- Adds ``tenant`` field to `netbox_cluster` (https://github.com/netbox-community/ansible_modules/pull/219)
93
+
- Adds ``tenant`` field to ``netbox_cluster`` (https://github.com/netbox-community/ansible_modules/pull/219)
94
94
- Allows private key to be passed in to ``validate_certs`` within modules (https://github.com/netbox-community/ansible_modules/issues/216)
95
-
- Better error handling if read-only token is provided for modules. Updated README as well to say that a `write-enabled` token is required (https://github.com/netbox-community/ansible_modules/pull/238)
95
+
- Better error handling if read-only token is provided for modules. Updated README as well to say that a ``write-enabled`` token is required (https://github.com/netbox-community/ansible_modules/pull/238)
96
96
97
97
Bugfixes
98
98
--------
@@ -125,14 +125,14 @@ v0.2.2
125
125
Minor Changes
126
126
-------------
127
127
128
-
- Changed ``validate_certs`` to ``raw1` to allow private keys to be passed in (https://github.com/netbox-community/ansible_modules/issues/211)
128
+
- Changed ``validate_certs`` to ``raw`` to allow private keys to be passed in (https://github.com/netbox-community/ansible_modules/issues/211)
129
129
130
130
Bugfixes
131
131
--------
132
132
133
+
- Added ``interfaces`` to ``ALLOWED_QUERY_PARAMS`` for ip addresses searches (https://github.com/netbox-community/ansible_modules/issues/201)
133
134
- Added ``type`` to ``ALLOWED_QUERY_PARAMS`` for interface searches (https://github.com/netbox-community/ansible_modules/issues/208)
134
-
- Added `interfaces` to `ALLOWED_QUERY_PARAMS` for ip addresses searches (https://github.com/netbox-community/ansible_modules/issues/201)
135
-
- Remove `rack` as a choice when createing virtual machines (https://github.com/netbox-community/ansible_modules/pull/221)
135
+
- Remove ``rack`` as a choice when creating virtual machines (https://github.com/netbox-community/ansible_modules/pull/221)
- This version has a few breaking changes due to new namespace and collection name. I felt it necessary to change the name of the lookup plugin and inventory plugin just not to have a non descriptive namespace call to use them. Below is an example:
198
198
``netbox.netbox.netbox`` would be used for both inventory plugin and lookup plugin, but in different contexts so no collision will arise, but confusion will.
199
-
I renamed the lookup plugin to `nb_lookup` so it will be used with the FQCN ``netbox.netbox.nb_lookup``.
199
+
I renamed the lookup plugin to ``nb_lookup`` so it will be used with the FQCN ``netbox.netbox.nb_lookup``.
200
200
The inventory plugin will now be called within an inventory file by ``netbox.netbox.nb_inventory``
201
201
202
202
Bugfixes
203
203
--------
204
204
205
-
- Update netbox_tenant and netbox_tenant_group to use slugs for searching (available since NetBox 2.6). Added slug options to netbox_site, netbox_tenant, netbox_tenant_group (https://github.com/netbox-community/ansible_modules/pull/120)
205
+
- Update ``netbox_tenant`` and ``netbox_tenant_group`` to use slugs for searching (available since NetBox 2.6). Added slug options to netbox_site, netbox_tenant, netbox_tenant_group (https://github.com/netbox-community/ansible_modules/pull/120)
This is the documentation home of the `netbox.netbox` Ansible Collection. We will provide some examples of using all the different plugins included with this collection.
8
+
This is the documentation home of the **netbox.netbox** Ansible Collection. We will provide some examples of using all the different plugins included with this collection.
0 commit comments