This commit is contained in:
2026-07-10 09:15:15 +02:00
parent b80f501d5a
commit 9d5ea53b5c
18 changed files with 2122 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
from netbox.plugins import PluginConfig
class VMwareImporterConfig(PluginConfig):
name = "netbox_vmware_importer"
verbose_name = "VMware Importer"
description = "Synchronize VMware vSphere virtual machines into NetBox."
version = "0.1.0"
author = "Internal NetBox Team"
base_url = "vmware-importer"
min_version = "4.4.0"
def ready(self):
super().ready()
# Importing registers the scheduler system job with NetBox.
from . import jobs # noqa: F401
config = VMwareImporterConfig