Skip to content

Commit

Permalink
Enclose peer address with [] on rn
Browse files Browse the repository at this point in the history
  • Loading branch information
edudppaz authored Jan 22, 2025
1 parent 7272ad6 commit fdf9229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/aci_l3out_bgp_peer.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ def main():

bgp_peer_profile_dict = dict(
aci_class=aci_class,
aci_rn="infraPeerP-[{0}]".format(peer_ip) if bgp_infra_peer else "peerP-{0}".format(peer_ip),
aci_rn="infraPeerP-[{0}]".format(peer_ip) if bgp_infra_peer else "peerP-[{0}]".format(peer_ip),
module_object=peer_ip,
target_filter={"addr": peer_ip},
)
Expand Down

0 comments on commit fdf9229

Please sign in to comment.