diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13f195dd..d16aa20d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: run: "pip install -U pip && pip install invoke" - name: "Install poetry" if: "${{ matrix.ansible-release == '2.11' }}" - run: "pip install poetry" + run: "pip install poetry==1.1.15" - name: "Remove ansible-base" if: "${{ matrix.ansible-release == '2.11' }}" run: "poetry remove ansible-base" @@ -86,7 +86,7 @@ jobs: run: "poetry add ansible-core@~2.11" - name: "Install poetry" if: "${{ matrix.ansible-release == '2.9' }}" - run: "pip install poetry" + run: "pip install poetry==1.1.15" - name: "Remove ansible-base" if: "${{ matrix.ansible-release == '2.9' }}" run: "poetry remove ansible-base" @@ -95,7 +95,7 @@ jobs: run: "poetry add ansible@~2.9" - name: "Install poetry" if: "${{ matrix.ansible-release == '2.12' }}" - run: "pip install poetry" + run: "pip install poetry==1.1.15" - name: "Remove ansible-base" if: "${{ matrix.ansible-release == '2.12' }}" run: "poetry remove ansible-base" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 88c7b5ea..25a5a745 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,19 @@ networktocode.nautobot Release Notes .. contents:: Topics +v4.1.1 +====== + +Release Summary +--------------- + +Fix incorrect filter parameters + +Bugfixes +-------- + +- (#163) Fix bad filter params due to `STRICT_FILTERING` being enabled in Nautobot 1.4. + v4.1.0 ====== diff --git a/Dockerfile b/Dockerfile index b85c6e3a..006c3f65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,15 +18,15 @@ WORKDIR /usr/src/app RUN python -m pip install -U pip # Install poetry for dep management -RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -ENV PATH="$PATH:/root/.poetry/bin" +RUN curl -sSL https://install.python-poetry.org | python3 - +ENV PATH="$PATH:/root/.local/bin" RUN poetry config virtualenvs.create false # Bring in Poetry related files needed for other stages COPY pyproject.toml poetry.lock ./ # Install only package Dependencies -RUN poetry install --no-dev +RUN poetry install --only main ######### # Linting @@ -55,7 +55,7 @@ RUN echo 'Running Black' && \ FROM lint AS unittests # Remove black from dev dependencies to prevent conflicts with Ansible -RUN poetry remove black --dev +RUN poetry remove black --group dev # Set a custom collection path for all ansible commands # Note: This only allows for one path, not colon-separated, because we use it diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index f50f9cbc..33373f84 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -342,3 +342,9 @@ releases: minor_changes: - (#139) - Add API versioning to compatible plugins. release_summary: "Fix minor bugs and add API versioning to collection." + + 4.1.1: + changes: + bugfixes: + - (#163) Fix bad filter params due to `STRICT_FILTERING` being enabled in Nautobot 1.4. + release_summary: "Fix incorrect filter parameters" diff --git a/docs/plugins/aggregate_module.rst b/docs/plugins/aggregate_module.rst index eeb606ac..711b165a 100644 --- a/docs/plugins/aggregate_module.rst +++ b/docs/plugins/aggregate_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.aggregate module -- Creates or removes aggregates from Na .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/cable_module.rst b/docs/plugins/cable_module.rst index 80db3239..1daa87f9 100644 --- a/docs/plugins/cable_module.rst +++ b/docs/plugins/cable_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.cable module -- Create, update or delete cables within Na .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/circuit_module.rst b/docs/plugins/circuit_module.rst index 9c5816fc..039ec498 100644 --- a/docs/plugins/circuit_module.rst +++ b/docs/plugins/circuit_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.circuit module -- Create, update or delete circuits withi .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/circuit_termination_module.rst b/docs/plugins/circuit_termination_module.rst index c2d9343a..c085050b 100644 --- a/docs/plugins/circuit_termination_module.rst +++ b/docs/plugins/circuit_termination_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.circuit_termination module -- Create, update or delete ci .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/circuit_type_module.rst b/docs/plugins/circuit_type_module.rst index 994e839e..8c13dbb5 100644 --- a/docs/plugins/circuit_type_module.rst +++ b/docs/plugins/circuit_type_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.circuit_type module -- Create, update or delete circuit t .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/cluster_group_module.rst b/docs/plugins/cluster_group_module.rst index 33842b73..a3235810 100644 --- a/docs/plugins/cluster_group_module.rst +++ b/docs/plugins/cluster_group_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.cluster_group module -- Create, update or delete cluster .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/cluster_module.rst b/docs/plugins/cluster_module.rst index 29d85840..8a3f31b4 100644 --- a/docs/plugins/cluster_module.rst +++ b/docs/plugins/cluster_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.cluster module -- Create, update or delete clusters withi .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/cluster_type_module.rst b/docs/plugins/cluster_type_module.rst index 35a17046..08c174e1 100644 --- a/docs/plugins/cluster_type_module.rst +++ b/docs/plugins/cluster_type_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.cluster_type module -- Create, update or delete cluster t .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/console_port_module.rst b/docs/plugins/console_port_module.rst index 0d550626..34b26abc 100644 --- a/docs/plugins/console_port_module.rst +++ b/docs/plugins/console_port_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.console_port module -- Create, update or delete console p .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/console_port_template_module.rst b/docs/plugins/console_port_template_module.rst index b0930e36..6286ea96 100644 --- a/docs/plugins/console_port_template_module.rst +++ b/docs/plugins/console_port_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.console_port_template module -- Create, update or delete .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/console_server_port_module.rst b/docs/plugins/console_server_port_module.rst index 1d6835db..22260ee7 100644 --- a/docs/plugins/console_server_port_module.rst +++ b/docs/plugins/console_server_port_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.console_server_port module -- Create, update or delete co .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/console_server_port_template_module.rst b/docs/plugins/console_server_port_template_module.rst index 0a1816d7..12737751 100644 --- a/docs/plugins/console_server_port_template_module.rst +++ b/docs/plugins/console_server_port_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.console_server_port_template module -- Create, update or .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_bay_module.rst b/docs/plugins/device_bay_module.rst index 788e4847..b30942f1 100644 --- a/docs/plugins/device_bay_module.rst +++ b/docs/plugins/device_bay_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device_bay module -- Create, update or delete device bays .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_bay_template_module.rst b/docs/plugins/device_bay_template_module.rst index 6119b4ed..27c96523 100644 --- a/docs/plugins/device_bay_template_module.rst +++ b/docs/plugins/device_bay_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device_bay_template module -- Create, update or delete de .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_interface_module.rst b/docs/plugins/device_interface_module.rst index 8ad75f14..e9ad7ca6 100644 --- a/docs/plugins/device_interface_module.rst +++ b/docs/plugins/device_interface_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device_interface module -- Creates or removes interfaces .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_interface_template_module.rst b/docs/plugins/device_interface_template_module.rst index f2d0deee..f65bd67a 100644 --- a/docs/plugins/device_interface_template_module.rst +++ b/docs/plugins/device_interface_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device_interface_template module -- Creates or removes in .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_module.rst b/docs/plugins/device_module.rst index 5884ba4e..8dfbad2e 100644 --- a/docs/plugins/device_module.rst +++ b/docs/plugins/device_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device module -- Create, update or delete devices within .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_role_module.rst b/docs/plugins/device_role_module.rst index d607fbc3..1b7ca3a3 100644 --- a/docs/plugins/device_role_module.rst +++ b/docs/plugins/device_role_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device_role module -- Create, update or delete devices ro .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/device_type_module.rst b/docs/plugins/device_type_module.rst index f03fdd48..263713f0 100644 --- a/docs/plugins/device_type_module.rst +++ b/docs/plugins/device_type_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.device_type module -- Create, update or delete device typ .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/front_port_module.rst b/docs/plugins/front_port_module.rst index b694327f..7d82cf7d 100644 --- a/docs/plugins/front_port_module.rst +++ b/docs/plugins/front_port_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.front_port module -- Create, update or delete front ports .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/front_port_template_module.rst b/docs/plugins/front_port_template_module.rst index 771ad824..2a653c7a 100644 --- a/docs/plugins/front_port_template_module.rst +++ b/docs/plugins/front_port_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.front_port_template module -- Create, update or delete fr .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/gql_inventory_inventory.rst b/docs/plugins/gql_inventory_inventory.rst index 879d3784..7f67eca1 100644 --- a/docs/plugins/gql_inventory_inventory.rst +++ b/docs/plugins/gql_inventory_inventory.rst @@ -43,7 +43,7 @@ networktocode.nautobot.gql_inventory inventory -- Nautobot inventory source usin .. Collection note .. note:: - This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this inventory plugin, diff --git a/docs/plugins/index.rst b/docs/plugins/index.rst index 390d6cb2..c87dd4fb 100644 --- a/docs/plugins/index.rst +++ b/docs/plugins/index.rst @@ -6,7 +6,7 @@ Networktocode.Nautobot ====================== -Collection version 4.1.0 +Collection version 4.1.1 .. contents:: :local: diff --git a/docs/plugins/inventory_inventory.rst b/docs/plugins/inventory_inventory.rst index 0b3f3d60..f2ed3ccd 100644 --- a/docs/plugins/inventory_inventory.rst +++ b/docs/plugins/inventory_inventory.rst @@ -43,7 +43,7 @@ networktocode.nautobot.inventory inventory -- Nautobot inventory source .. Collection note .. note:: - This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. diff --git a/docs/plugins/inventory_item_module.rst b/docs/plugins/inventory_item_module.rst index 2d82adf6..3f817d76 100644 --- a/docs/plugins/inventory_item_module.rst +++ b/docs/plugins/inventory_item_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.inventory_item module -- Creates or removes inventory ite .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/ip_address_module.rst b/docs/plugins/ip_address_module.rst index cf7b6bd1..a8974193 100644 --- a/docs/plugins/ip_address_module.rst +++ b/docs/plugins/ip_address_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.ip_address module -- Creates or removes IP addresses from .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -964,7 +964,6 @@ Examples networktocode.nautobot.ip_address: url: http://nautobot.local token: thisIsMyToken - family: 4 address: 192.168.1.20 vrf: Test tenant: Test Tenant @@ -978,7 +977,6 @@ Examples networktocode.nautobot.ip_address: url: http://nautobot.local token: thisIsMyToken - family: 4 address: 192.168.1.30 vrf: Test nat_inside: diff --git a/docs/plugins/ipam_role_module.rst b/docs/plugins/ipam_role_module.rst index 29b2e99d..6a777e0d 100644 --- a/docs/plugins/ipam_role_module.rst +++ b/docs/plugins/ipam_role_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.ipam_role module -- Creates or removes ipam roles from Na .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/lookup_graphql_lookup.rst b/docs/plugins/lookup_graphql_lookup.rst index 0cf7154c..2b9f33ae 100644 --- a/docs/plugins/lookup_graphql_lookup.rst +++ b/docs/plugins/lookup_graphql_lookup.rst @@ -43,7 +43,7 @@ networktocode.nautobot.lookup_graphql lookup -- Queries and returns elements fro .. Collection note .. note:: - This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this lookup plugin, diff --git a/docs/plugins/lookup_lookup.rst b/docs/plugins/lookup_lookup.rst index b8a8886a..ab7edf74 100644 --- a/docs/plugins/lookup_lookup.rst +++ b/docs/plugins/lookup_lookup.rst @@ -43,7 +43,7 @@ networktocode.nautobot.lookup lookup -- Queries and returns elements from Nautob .. Collection note .. note:: - This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this lookup plugin, diff --git a/docs/plugins/manufacturer_module.rst b/docs/plugins/manufacturer_module.rst index 37fa4391..4b1c7823 100644 --- a/docs/plugins/manufacturer_module.rst +++ b/docs/plugins/manufacturer_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.manufacturer module -- Create or delete manufacturers wit .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/nautobot_server_module.rst b/docs/plugins/nautobot_server_module.rst index aa5a6422..7064fe76 100644 --- a/docs/plugins/nautobot_server_module.rst +++ b/docs/plugins/nautobot_server_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.nautobot_server module -- Manages Nautobot Server applica .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/platform_module.rst b/docs/plugins/platform_module.rst index 9dbba47f..232d7209 100644 --- a/docs/plugins/platform_module.rst +++ b/docs/plugins/platform_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.platform module -- Create or delete platforms within Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/power_feed_module.rst b/docs/plugins/power_feed_module.rst index a24059dc..9789ebff 100644 --- a/docs/plugins/power_feed_module.rst +++ b/docs/plugins/power_feed_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.power_feed module -- Create, update or delete power feeds .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/power_outlet_module.rst b/docs/plugins/power_outlet_module.rst index 105973bf..e9d07716 100644 --- a/docs/plugins/power_outlet_module.rst +++ b/docs/plugins/power_outlet_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.power_outlet module -- Create, update or delete power out .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/power_outlet_template_module.rst b/docs/plugins/power_outlet_template_module.rst index 4eb4b38a..ce94e3e0 100644 --- a/docs/plugins/power_outlet_template_module.rst +++ b/docs/plugins/power_outlet_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.power_outlet_template module -- Create, update or delete .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/power_panel_module.rst b/docs/plugins/power_panel_module.rst index 578c7d0c..4f78c117 100644 --- a/docs/plugins/power_panel_module.rst +++ b/docs/plugins/power_panel_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.power_panel module -- Create, update or delete power pane .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/power_port_module.rst b/docs/plugins/power_port_module.rst index 208fd8b4..250b63d1 100644 --- a/docs/plugins/power_port_module.rst +++ b/docs/plugins/power_port_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.power_port module -- Create, update or delete power ports .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/power_port_template_module.rst b/docs/plugins/power_port_template_module.rst index 245a075d..647b9177 100644 --- a/docs/plugins/power_port_template_module.rst +++ b/docs/plugins/power_port_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.power_port_template module -- Create, update or delete po .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/prefix_module.rst b/docs/plugins/prefix_module.rst index 53f418ea..2ee395d3 100644 --- a/docs/plugins/prefix_module.rst +++ b/docs/plugins/prefix_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.prefix module -- Creates or removes prefixes from Nautobo .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/provider_module.rst b/docs/plugins/provider_module.rst index bc5ee985..fae34f66 100644 --- a/docs/plugins/provider_module.rst +++ b/docs/plugins/provider_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.provider module -- Create, update or delete providers wit .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/query_graphql_module.rst b/docs/plugins/query_graphql_module.rst index 0dadb7cd..76e65055 100644 --- a/docs/plugins/query_graphql_module.rst +++ b/docs/plugins/query_graphql_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.query_graphql module -- Queries and returns elements from .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/rack_group_module.rst b/docs/plugins/rack_group_module.rst index 484b34bd..401b5474 100644 --- a/docs/plugins/rack_group_module.rst +++ b/docs/plugins/rack_group_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.rack_group module -- Create, update or delete racks group .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/rack_module.rst b/docs/plugins/rack_module.rst index 4e19b951..ec7dddad 100644 --- a/docs/plugins/rack_module.rst +++ b/docs/plugins/rack_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.rack module -- Create, update or delete racks within Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/rack_role_module.rst b/docs/plugins/rack_role_module.rst index 23e3d0f0..9a9d55e0 100644 --- a/docs/plugins/rack_role_module.rst +++ b/docs/plugins/rack_role_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.rack_role module -- Create, update or delete racks roles .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/rear_port_module.rst b/docs/plugins/rear_port_module.rst index d19af9d7..1ed4d75c 100644 --- a/docs/plugins/rear_port_module.rst +++ b/docs/plugins/rear_port_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.rear_port module -- Create, update or delete rear ports w .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/rear_port_template_module.rst b/docs/plugins/rear_port_template_module.rst index 1285f0d0..fcbecea1 100644 --- a/docs/plugins/rear_port_template_module.rst +++ b/docs/plugins/rear_port_template_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.rear_port_template module -- Create, update or delete rea .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/region_module.rst b/docs/plugins/region_module.rst index ebeb75a6..a0c8f27c 100644 --- a/docs/plugins/region_module.rst +++ b/docs/plugins/region_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.region module -- Creates or removes regions from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/relationship_association_module.rst b/docs/plugins/relationship_association_module.rst index ffc6444f..8428439d 100644 --- a/docs/plugins/relationship_association_module.rst +++ b/docs/plugins/relationship_association_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.relationship_association module -- Creates or removes a r .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/rir_module.rst b/docs/plugins/rir_module.rst index be044924..7d316d4c 100644 --- a/docs/plugins/rir_module.rst +++ b/docs/plugins/rir_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.rir module -- Create, update or delete RIRs within Nautob .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/route_target_module.rst b/docs/plugins/route_target_module.rst index d378695e..dc5cb4d2 100644 --- a/docs/plugins/route_target_module.rst +++ b/docs/plugins/route_target_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.route_target module -- Creates or removes route targets f .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/service_module.rst b/docs/plugins/service_module.rst index 6566513d..c5f25c7a 100644 --- a/docs/plugins/service_module.rst +++ b/docs/plugins/service_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.service module -- Creates or removes service from Nautobo .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/site_module.rst b/docs/plugins/site_module.rst index ef5118d8..2faa1652 100644 --- a/docs/plugins/site_module.rst +++ b/docs/plugins/site_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.site module -- Creates or removes sites from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/status_module.rst b/docs/plugins/status_module.rst index f48adc62..3eb28b42 100644 --- a/docs/plugins/status_module.rst +++ b/docs/plugins/status_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.status module -- Creates or removes status from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/tag_module.rst b/docs/plugins/tag_module.rst index 462b7742..7a0a3df6 100644 --- a/docs/plugins/tag_module.rst +++ b/docs/plugins/tag_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.tag module -- Creates or removes tags from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/tenant_group_module.rst b/docs/plugins/tenant_group_module.rst index 6a5d2db1..0559b423 100644 --- a/docs/plugins/tenant_group_module.rst +++ b/docs/plugins/tenant_group_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.tenant_group module -- Creates or removes tenant groups f .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/tenant_module.rst b/docs/plugins/tenant_module.rst index 48b8812b..324a18b7 100644 --- a/docs/plugins/tenant_module.rst +++ b/docs/plugins/tenant_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.tenant module -- Creates or removes tenants from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/virtual_chassis_module.rst b/docs/plugins/virtual_chassis_module.rst index b912c525..da3c8b10 100644 --- a/docs/plugins/virtual_chassis_module.rst +++ b/docs/plugins/virtual_chassis_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.virtual_chassis module -- Create, update or delete virtua .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/virtual_machine_module.rst b/docs/plugins/virtual_machine_module.rst index 4e3ceb35..213af1ff 100644 --- a/docs/plugins/virtual_machine_module.rst +++ b/docs/plugins/virtual_machine_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.virtual_machine module -- Create, update or delete virtua .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/vlan_group_module.rst b/docs/plugins/vlan_group_module.rst index bc7c814d..b95b8ac9 100644 --- a/docs/plugins/vlan_group_module.rst +++ b/docs/plugins/vlan_group_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.vlan_group module -- Create, update or delete vlans group .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/vlan_module.rst b/docs/plugins/vlan_module.rst index 953565b9..ef2987ea 100644 --- a/docs/plugins/vlan_module.rst +++ b/docs/plugins/vlan_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.vlan module -- Create, update or delete vlans within Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/vm_interface_module.rst b/docs/plugins/vm_interface_module.rst index 52690dd6..66820091 100644 --- a/docs/plugins/vm_interface_module.rst +++ b/docs/plugins/vm_interface_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.vm_interface module -- Creates or removes interfaces from .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/docs/plugins/vrf_module.rst b/docs/plugins/vrf_module.rst index 8412f5d8..2ffc898f 100644 --- a/docs/plugins/vrf_module.rst +++ b/docs/plugins/vrf_module.rst @@ -43,7 +43,7 @@ networktocode.nautobot.vrf module -- Create, update or delete vrfs within Nautob .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.1.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.1.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, diff --git a/galaxy.yml b/galaxy.yml index d18b1cbb..fcf402ff 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: networktocode name: nautobot # The version of the collection. Must be compatible with semantic versioning -version: 4.1.0 +version: 4.1.1 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/plugins/modules/ip_address.py b/plugins/modules/ip_address.py index 187942dd..86a08788 100644 --- a/plugins/modules/ip_address.py +++ b/plugins/modules/ip_address.py @@ -209,7 +209,6 @@ networktocode.nautobot.ip_address: url: http://nautobot.local token: thisIsMyToken - family: 4 address: 192.168.1.20 vrf: Test tenant: Test Tenant @@ -223,7 +222,6 @@ networktocode.nautobot.ip_address: url: http://nautobot.local token: thisIsMyToken - family: 4 address: 192.168.1.30 vrf: Test nat_inside: diff --git a/pyproject.toml b/pyproject.toml index 80ef214b..c4012607 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot_ansible_modules" -version = "4.1.0" +version = "4.1.1" description = "Ansible collection to interact with Nautobot's API" authors = ["Network to Code