ansible_modules icon indicating copy to clipboard operation
ansible_modules copied to clipboard

[Docs]: Unit Change in Netbox Virtualmachines Model Disk

Open throjaisnn opened this issue 1 year ago • 0 comments

Change Type

Correction

Area

Configuration parameters

Proposed Changes

Since the Netbox release 4.1.0, the virtualmachines.py model has changed. In earlier versions, the hard disk value was specified in GB, since 4.1.0 it is specified in MB.

Ansible collections documentation

Netbox VirtualMachines Model in v3.7.8

disk = models.PositiveIntegerField(
      blank=True,
      null=True,
      verbose_name=_('disk (GB)')
)

Netbox VirtualMachines Model in v4.1.0

disk = models.PositiveIntegerField(
      blank=True,
      null=True,
      verbose_name=_('disk (MB)')
)

throjaisnn avatar Oct 02 '24 09:10 throjaisnn