Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
leoparente committed Aug 30, 2024
1 parent 0b90efb commit e696141
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ def main():
VirtualMachine) required by NetBox.
"""

virtual_disk = VirtualDisk(name="Disk A")
virtual_disk = VirtualDisk(name="Disk A", size=16480)

entities.append(Entity(virtual_disk=virtual_disk))

Expand Down Expand Up @@ -1233,7 +1233,7 @@ def main():
),
vcpus=8,
memory=12128,
disk=16786,
disk=16480,
description="Virtual Machine A description",
comments="Lorem ipsum dolor sit amet",
tags=["tag 1", "tag 2"],
Expand Down Expand Up @@ -1387,7 +1387,7 @@ def main():
),
vcpus=8,
memory=12128,
disk=16786,
disk=16480,
description="Virtual Machine A description",
comments="Lorem ipsum dolor sit amet",
tags=["tag 1", "tag 2"],
Expand Down

0 comments on commit e696141

Please sign in to comment.