Skip to content

Commit

Permalink
avoid errors when updating VRF BGP settings on a virtual circuit
Browse files Browse the repository at this point in the history
  • Loading branch information
ctreatma committed Oct 9, 2024
1 parent 5891496 commit 983472e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/module_utils/metal/metal_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ def private_ipv4_subnet_size(resource: dict):
METAL_VIRTUAL_CIRCUIT_RESPONSE_ATTRIBUTE_MAP = {
'id': 'id',
'name': 'name',
'customer_ip': 'customer_ip',
'metal_ip': 'metal_ip',
'customer_ip': optional('customer_ip'),
'metal_ip': optional('metal_ip'),
'nni_vlan': 'nni_vlan',
'peer_asn': 'peer_asn',
'peer_asn': optional('peer_asn'),
'port': 'port',
'project': 'project',
'status': 'status',
Expand Down

0 comments on commit 983472e

Please sign in to comment.