Skip to content

Commit

Permalink
feat: Add description option to netbox_cluster_group module (#1284)
Browse files Browse the repository at this point in the history
  • Loading branch information
richbibby committed Jul 6, 2024
1 parent 33c74be commit 79b7f77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- Add `description` to `netbox_cluster_group` module (https://github.com/netbox-community/ansible_modules/issues/1276)
7 changes: 7 additions & 0 deletions plugins/modules/netbox_cluster_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
- This is auto-generated following NetBox rules if not provided
required: false
type: str
description:
description:
- The description of the cluster group
required: false
type: str
version_added: "3.20.0"
tags:
description:
- The tags to add/update
Expand Down Expand Up @@ -115,6 +121,7 @@ def main():
options=dict(
name=dict(required=True, type="str"),
slug=dict(required=False, type="str"),
description=dict(required=False, type="str"),
tags=dict(required=False, type="list", elements="raw"),
custom_fields=dict(required=False, type="dict"),
),
Expand Down

0 comments on commit 79b7f77

Please sign in to comment.