Skip to content
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

feat(panos_aggregate_interface): Fast failover for LACP on aggregate network interfaces #423

Merged
merged 2 commits into from
Apr 26, 2023
Merged
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
7 changes: 6 additions & 1 deletion plugins/modules/panos_aggregate_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@
- Set LACP mode
type: str
choices: ['active', 'passive']
lacp_fast_failover:
description:
- Enable LACP fast failover
type: bool
zone_name:
description:
- The zone to put this interface into.
Expand Down Expand Up @@ -186,7 +190,7 @@ def main():
with_set_zone_reference=True,
with_set_virtual_router_reference=True,
with_gathered_filter=True,
min_pandevice_version=(0, 13, 0),
min_pandevice_version=(1, 9, 0),
sdk_cls=("network", "AggregateInterface"),
sdk_params=dict(
if_name=dict(required=True, sdk_param="name"),
Expand All @@ -212,6 +216,7 @@ def main():
lacp_passive_pre_negotiation=dict(type="bool"),
lacp_rate=dict(type="str", choices=["fast", "slow"]),
lacp_mode=dict(type="str", choices=["active", "passive"]),
lacp_fast_failover=dict(type="bool"),
),
)

Expand Down