Skip to content

Commit eaa067f

Browse files
authored
Modules: Added comments option for netbox_virtual_machine (#380)
* Added comments option for netbox_virtual_machine * Removed mistaken field
1 parent 6916585 commit eaa067f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

plugins/modules/netbox_virtual_machine.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
- configuration context of the virtual machine
119119
required: false
120120
type: dict
121+
comments:
122+
description:
123+
- Comments of the virtual machine
124+
required: false
125+
type: str
121126
required: true
122127
state:
123128
description:
@@ -236,6 +241,7 @@ def main():
236241
tags=dict(required=False, type="list"),
237242
custom_fields=dict(required=False, type="dict"),
238243
local_context_data=dict(required=False, type="dict"),
244+
comments=dict(required=False, type="str"),
239245
),
240246
),
241247
)

0 commit comments

Comments
 (0)