Skip to content

Commit

Permalink
fix: Correct vPC member side
Browse files Browse the repository at this point in the history
  • Loading branch information
timcragg committed Jun 11, 2024
1 parent 555a942 commit 9dc36a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/aci_l3out_logical_interface_vpc_member.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def main():
aci_class="l3extMember",
aci_rn="mem-{0}".format(side),
module_object=side,
target_filter={"name": side},
target_filter={"side": side},
),
)

Expand All @@ -387,7 +387,7 @@ def main():
aci.payload(
aci_class="l3extMember",
class_config=dict(
name=side,
side=side,
addr=address,
ipv6Dad=ipv6_dad,
descr=description,
Expand Down

0 comments on commit 9dc36a6

Please sign in to comment.