Skip to content

Commit

Permalink
feat(panos_aggregate_interface): Support LACP (#119)
Browse files Browse the repository at this point in the history
Fixes #66
  • Loading branch information
Michael Richardson authored Oct 7, 2020
1 parent dab471a commit e015bb5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions plugins/modules/panos_aggregate_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,24 @@
description:
- Metric for the DHCP default route
type: int
lacp_enable:
description:
- Enable LACP on this interface
type: bool
lacp_passive_pre_negotiation:
description:
- Enable LACP passive pre-negotiation
type: bool
lacp_rate:
description:
- Set LACP transmission rate
type: str
choices: ['fast', 'slow']
lacp_mode:
description:
- Set LACP mode
type: str
choices: ['active', 'passive']
zone_name:
description:
- The zone to put this interface into.
Expand Down Expand Up @@ -178,6 +196,10 @@ def main():
enable_dhcp=dict(type='bool'),
create_dhcp_default_route=dict(type='bool'),
dhcp_default_route_metric=dict(type='int'),
lacp_enable=dict(type='bool'),
lacp_passive_pre_negotiation=dict(type='bool'),
lacp_rate=dict(type='str', choices=['fast', 'slow']),
lacp_mode=dict(type='str', choices=['active', 'passive']),
zone_name=dict(),
vr_name=dict(default='default'),
commit=dict(type='bool', default=False),
Expand Down

0 comments on commit e015bb5

Please sign in to comment.