From e7fa3f6fcdba6e7a036b9604eb47ec193c5342a4 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Tue, 22 Oct 2024 20:58:11 -0500 Subject: [PATCH] Update .cookiecutter.json Due to the way that Drift Manager uses the .cookiecutter.json file, we need to change the model_class_name to a valid model in BGP models to help us track drift in files that would be removed if the model_class_name=None. --- .cookiecutter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 0ae647b..3f369ed 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -14,7 +14,7 @@ "max_nautobot_version": "2.9999", "camel_name": "NautobotFirewallModels", "project_short_description": "Nautobot App to model firewall and security objects. Allows users to model policies in a vendor-neutral manner and use that data to drive network security automation", - "model_class_name": "None", + "model_class_name": "IPRange", "open_source_license": "Apache-2.0", "docs_base_url": "https://docs.nautobot.com", "docs_app_url": "https://docs.nautobot.com/projects/firewall-models/en/latest",