mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-11-23 00:13:11 +01:00
Add optional primary_ip on virtual machines initializer
This commit is contained in:
parent
45f7823a17
commit
a9232e4f30
@ -1,4 +1,5 @@
|
||||
from dcim.models import Site, Platform, DeviceRole
|
||||
from ipam.models import IPAddress
|
||||
from virtualization.models import Cluster, VirtualMachine
|
||||
from tenancy.models import Tenant
|
||||
from extras.models import CustomField, CustomFieldValue
|
||||
@ -17,7 +18,9 @@ required_assocs = {
|
||||
optional_assocs = {
|
||||
'tenant': (Tenant, 'name'),
|
||||
'platform': (Platform, 'name'),
|
||||
'role': (DeviceRole, 'name')
|
||||
'role': (DeviceRole, 'name'),
|
||||
'primary_ip4': (IPAddress, 'address'),
|
||||
'primary_ip6': (IPAddress, 'address')
|
||||
}
|
||||
|
||||
for params in virtual_machines:
|
||||
|
Loading…
Reference in New Issue
Block a user