2019-07-04 12:10:56 +00:00
|
|
|
import sys
|
|
|
|
|
|
2021-12-30 14:15:24 +00:00
|
|
|
from startup_script_utils import load_yaml
|
2021-12-30 14:19:44 +00:00
|
|
|
from tenancy.models import TenantGroup
|
2021-02-08 10:59:33 +00:00
|
|
|
|
2021-12-30 14:19:44 +00:00
|
|
|
tenant_groups = load_yaml("/opt/netbox/initializers/tenant_groups.yml")
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2020-02-05 14:31:01 +00:00
|
|
|
if tenant_groups is None:
|
2021-12-30 14:19:44 +00:00
|
|
|
sys.exit()
|
2021-12-30 14:15:24 +00:00
|
|
|
|
|
|
|
|
optional_assocs = {
|
2021-12-30 14:19:44 +00:00
|
|
|
'parent': (TenantGroup, 'name'),
|
2021-12-30 14:15:24 +00:00
|
|
|
}
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2020-02-05 14:31:01 +00:00
|
|
|
for params in tenant_groups:
|
2021-12-30 14:19:44 +00:00
|
|
|
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)
|
2021-12-30 14:15:24 +00:00
|
|
|
|
2021-12-30 14:19:44 +00:00
|
|
|
tenant_group, created = TenantGroup.objects.get_or_create(**params)
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2021-12-30 14:19:44 +00:00
|
|
|
if created:
|
|
|
|
|
print("🔳 Created Tenant Group", tenant_group.name)
|