diff --git a/plugins/modules/netbox_device_bay.py b/plugins/modules/netbox_device_bay.py index 6eca18b3e..bcfd4bf3c 100644 --- a/plugins/modules/netbox_device_bay.py +++ b/plugins/modules/netbox_device_bay.py @@ -45,9 +45,14 @@ type: str installed_device: description: - - The ddevice that will be installed into the bay. The device type must be "child". + - The device that will be installed into the bay. The device type must be "child". required: false type: raw + label: + description: + - Label for the device bay + required: false + type: str tags: description: - Any tags that the device bay may need to be associated with @@ -132,6 +137,7 @@ def main(): name=dict(required=True, type="str"), description=dict(required=False, type="str"), installed_device=dict(required=False, type="raw"), + label=dict(required=False, type="str"), tags=dict(required=False, type="list", elements="raw"), ), ),