37 lines
869 B
Python
37 lines
869 B
Python
import sys
|
|
|
|
from dcim.models import Site
|
|
from ipam.models import VLAN, VLANGroup, Role
|
|
from startup_script_utils import *
|
|
from tenancy.models import Tenant, TenantGroup
|
|
|
|
vlans = load_yaml('/opt/netbox/initializers/vlans.yml')
|
|
|
|
if vlans is None:
|
|
sys.exit()
|
|
|
|
optional_assocs = {
|
|
'site': (Site, 'name'),
|
|
'tenant': (Tenant, 'name'),
|
|
'tenant_group': (TenantGroup, 'name'),
|
|
'group': (VLANGroup, 'name'),
|
|
'role': (Role, 'name')
|
|
}
|
|
|
|
for params in vlans:
|
|
custom_field_data = pop_custom_fields(params)
|
|
|
|
for assoc, details in optional_assocs.items():
|
|
if assoc in params:
|
|
model, field = details
|
|
query = { field: params.pop(assoc) }
|
|
|
|
params[assoc] = model.objects.get(**query)
|
|
|
|
vlan, created = VLAN.objects.get_or_create(**params)
|
|
|
|
if created:
|
|
set_custom_fields_values(vlan, custom_field_data)
|
|
|
|
print("🏠 Created VLAN", vlan.name)
|