Skip to content

Commit 50fdaea

Browse files
authored
Enhancement: netbox_virtual_machine: Added local_context_data (#357)
1 parent 43aba39 commit 50fdaea

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
@@ -113,6 +113,11 @@
113113
- Must exist in Netbox
114114
required: false
115115
type: dict
116+
local_context_data:
117+
description:
118+
- configuration context of the virtual machine
119+
required: false
120+
type: dict
116121
required: true
117122
state:
118123
description:
@@ -230,6 +235,7 @@ def main():
230235
status=dict(required=False, type="raw"),
231236
tags=dict(required=False, type="list"),
232237
custom_fields=dict(required=False, type="dict"),
238+
local_context_data=dict(required=False, type="dict")
233239
),
234240
),
235241
)

0 commit comments

Comments
 (0)