Skip to content

Commit

Permalink
feat(panos_aggregate_interface): Fast failover for LACP on aggregate …
Browse files Browse the repository at this point in the history
…network interfaces (#423)
  • Loading branch information
jamesholland-uk authored Apr 26, 2023
1 parent b6b07ff commit ad89bcd
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit ad89bcd

Please sign in to comment.