We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f3488 commit 0e4a6b8Copy full SHA for 0e4a6b8
changelogs/fragments/1339-name-to-fhrp-group.yml
@@ -0,0 +1,2 @@
1
+minor_changes:
2
+ - Add name as option to netbox_fhrp_group
plugins/modules/netbox_fhrp_group.py
@@ -33,6 +33,11 @@
33
description:
34
- Defines the FHRP group configuration
35
suboptions:
36
+ name:
37
+ description:
38
+ - Name of the FHRP group
39
+ type: str
40
+ version_added: '3.21.0'
41
protocol:
42
43
- Protocol
@@ -142,6 +147,7 @@ def main():
142
147
type="dict",
143
148
required=True,
144
149
options=dict(
150
+ name=dict(type="str"),
145
151
protocol=dict(
146
152
type="str",
153
choices=[
0 commit comments