Skip to content

Commit

Permalink
Fix issue #1339 (#1346)
Browse files Browse the repository at this point in the history
* Add name to options of fhrp_group

* Add doc and fragment
  • Loading branch information
rodvand authored Oct 27, 2024
1 parent e0f3488 commit 0e4a6b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1339-name-to-fhrp-group.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- Add name as option to netbox_fhrp_group
6 changes: 6 additions & 0 deletions plugins/modules/netbox_fhrp_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@
description:
- Defines the FHRP group configuration
suboptions:
name:
description:
- Name of the FHRP group
type: str
version_added: '3.21.0'
protocol:
description:
- Protocol
Expand Down Expand Up @@ -142,6 +147,7 @@ def main():
type="dict",
required=True,
options=dict(
name=dict(type="str"),
protocol=dict(
type="str",
choices=[
Expand Down

0 comments on commit 0e4a6b8

Please sign in to comment.