From 357d2ced85144ecc4b461d3b8cace470e983c138 Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Mon, 6 May 2024 07:56:48 -0500 Subject: [PATCH 1/5] =?UTF-8?q?docs:=20=F0=9F=93=9D=20Add=20missing=20attr?= =?UTF-8?q?ibution=20for=20Device42=20integration.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index bc62e308d..b287c9fae 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,9 @@ This project includes code originally written in separate Nautobot apps, which h [@nniehoff](https://github.com/nniehoff), [@qduk](https://github.com/qduk), [@ubajze](https://github.com/ubajze) +- [nautobot-plugin-ssot-device42](https://github.com/nautobot/nautobot-plugin-ssot-device42): + Thanks + [@jdrew82](https://github.com/jdrew82) - [nautobot-plugin-ssot-infoblox](https://github.com/nautobot/nautobot-plugin-ssot-infoblox): Thanks [@FragmentedPacket](https://github.com/FragmentedPacket), From 5d4f37e621355ba6b0962afe8fbc7b92fc30269a Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Mon, 6 May 2024 08:01:56 -0500 Subject: [PATCH 2/5] =?UTF-8?q?docs:=20=F0=9F=93=9D=20Add=20changelog=20sn?= =?UTF-8?q?ippet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changes/450.documentation | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/450.documentation diff --git a/changes/450.documentation b/changes/450.documentation new file mode 100644 index 000000000..bb1fd3a38 --- /dev/null +++ b/changes/450.documentation @@ -0,0 +1 @@ +Add missing attribution for Device42 integration to README. From 94d87b8a2ed61203ede4b2f77a22bb3fc14fa8bc Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Mon, 6 May 2024 08:13:17 -0500 Subject: [PATCH 3/5] =?UTF-8?q?build:=20=F0=9F=8F=97=EF=B8=8F=20Add=20exam?= =?UTF-8?q?ple=20environment=20vars=20for=20config=20settings.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- development/creds.example.env | 2 ++ development/development.env | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/development/creds.example.env b/development/creds.example.env index 780d04b29..5feb6c71c 100644 --- a/development/creds.example.env +++ b/development/creds.example.env @@ -29,6 +29,8 @@ MYSQL_PASSWORD=${NAUTOBOT_DB_PASSWORD} NAUTOBOT_ARISTACV_CVP_PASSWORD="changeme" NAUTOBOT_ARISTACV_CVP_TOKEN="changeme" +NAUTOBOT_SSOT_DEVICE42_PASSWORD="changeme" + NAUTOBOT_SSOT_INFOBLOX_PASSWORD="changeme" # ACI Credentials. Append friendly name to the end to identify each APIC. diff --git a/development/development.env b/development/development.env index 3eb37964b..d54cc6f1b 100644 --- a/development/development.env +++ b/development/development.env @@ -74,6 +74,10 @@ NAUTOBOT_SSOT_DEVICE42_HOST="" NAUTOBOT_SSOT_DEVICE42_USERNAME="" NAUTOBOT_SSOT_DEVICE42_PASSWORD="" +NAUTOBOT_SSOT_ENABLE_DNA_CENTER="True" +NAUTOBOT_SSOT_DEVICE42_HOST="https://device42.example.com" +NAUTOBOT_SSOT_DEVICE42_USERNAM="changeme" + NAUTOBOT_SSOT_ENABLE_INFOBLOX="True" NAUTOBOT_SSOT_INFOBLOX_DEFAULT_STATUS="Active" NAUTOBOT_SSOT_INFOBLOX_ENABLE_SYNC_TO_INFOBLOX="True" From 046809e41e2ad60042988d3eb1d1c73413f11f3d Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Mon, 6 May 2024 08:21:42 -0500 Subject: [PATCH 4/5] =?UTF-8?q?build:=20=F0=9F=8F=97=EF=B8=8F=20Set=20defa?= =?UTF-8?q?ult=20for=20enable=5Fdevice42=20to=20True=20in=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- development/nautobot_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/nautobot_config.py b/development/nautobot_config.py index 12c20c603..6ad68fdb8 100644 --- a/development/nautobot_config.py +++ b/development/nautobot_config.py @@ -193,7 +193,7 @@ "aristacv_verify": is_truthy(os.getenv("NAUTOBOT_ARISTACV_VERIFY", True)), "enable_aci": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_ACI")), "enable_aristacv": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_ARISTACV")), - "enable_device42": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_DEVICE42")), + "enable_device42": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_DEVICE42", "True")), "enable_infoblox": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_INFOBLOX")), "enable_ipfabric": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_IPFABRIC")), "enable_servicenow": is_truthy(os.getenv("NAUTOBOT_SSOT_ENABLE_SERVICENOW")), From cf9f66e4f6033cc3cd6cceccbaa009647682930a Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Mon, 6 May 2024 08:38:44 -0500 Subject: [PATCH 5/5] =?UTF-8?q?ci:=20=F0=9F=91=B7=20Remove=20MySQL=20passw?= =?UTF-8?q?ord=20command=20as=20no=20longer=20needed=20and=20breaking=20CI?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- development/docker-compose.mysql.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/development/docker-compose.mysql.yml b/development/docker-compose.mysql.yml index 062ada948..2f1103da4 100644 --- a/development/docker-compose.mysql.yml +++ b/development/docker-compose.mysql.yml @@ -19,7 +19,6 @@ services: db: image: "mysql:8" command: - - "--default-authentication-plugin=mysql_native_password" - "--max_connections=1000" env_file: - "development.env"