Skip to content

Commit c311edf

Browse files
committed
feat: Add support for default_platform on device_types
1 parent 775f871 commit c311edf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

plugins/modules/netbox_device_type.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,12 @@
112112
- Comments that may include additional information in regards to the device_type
113113
required: false
114114
type: str
115+
default_platform:
116+
description:
117+
- Set the default platform used by the device
118+
required: false
119+
type: raw
120+
version_added: "3.15.0"
115121
tags:
116122
description:
117123
- Any tags that the device type may need to be associated with
@@ -237,6 +243,7 @@ def main():
237243
),
238244
description=dict(required=False, type="str"),
239245
comments=dict(required=False, type="str"),
246+
default_platform=dict(required=False, type="raw"),
240247
tags=dict(required=False, type="list", elements="raw"),
241248
custom_fields=dict(required=False, type="dict"),
242249
),

0 commit comments

Comments
 (0)