Skip to content

Fix issue #1339 #1346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading