40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
from tenancy.models import Tenant, TenantGroup
|
|
from extras.models import CustomField, CustomFieldValue
|
|
from startup_script_utils import load_yaml
|
|
import sys
|
|
|
|
tenants = load_yaml('/opt/netbox/initializers/tenants.yml')
|
|
|
|
if tenants is None:
|
|
sys.exit()
|
|
|
|
optional_assocs = {
|
|
'group': (TenantGroup, 'name')
|
|
}
|
|
|
|
for params in tenants:
|
|
custom_fields = params.pop('custom_fields', None)
|
|
|
|
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)
|
|
|
|
tenant, created = Tenant.objects.get_or_create(**params)
|
|
|
|
if created:
|
|
if custom_fields is not None:
|
|
for cf_name, cf_value in custom_fields.items():
|
|
custom_field = CustomField.objects.get(name=cf_name)
|
|
custom_field_value = CustomFieldValue.objects.create(
|
|
field=custom_field,
|
|
obj=tenant,
|
|
value=cf_value
|
|
)
|
|
|
|
tenant.custom_field_values.add(custom_field_value)
|
|
|
|
print("👩💻 Created Tenant", tenant.name)
|