cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1549
Views
0
Helpful
1
Replies

Terraform resource ACI BGP Peer connectivity using Interfaces

Adhiputra
Level 1
Level 1

is there a resource to configure bgp peer connectivity using physical interfaces inside of l3out ?

I try using this resource code, but it creates bgp peer using loopback interface, seems there is no option to choose physical interface in this resource

 

 

resource "aci_bgp_peer_connectivity_profile" "SR-XXX_GLOBAL_L3OUT-L201_NP_BGP-PEER" {
    logical_node_profile_dn = aci_logical_node_profile.SR-XXX_GLOBAL_L3OUT-L201_NP.id
    addr = "10.10.10.26/30"
    as_number = "24880"
    ctrl = "send-com,send-ext-com"
  
}

result:

 

bgp peer.png

 

 

 

 

 

1 Accepted Solution

Accepted Solutions

qsnyder
Cisco Employee
Cisco Employee

Based on looking at the Terraform resource docs for that resource, it doesn't appear that one exists. 

https://registry.terraform.io/providers/CiscoDevNet/aci/latest/docs/resources/bgp_peer_connectivity_profile

 

I can ask around internally and see if there is some other way of accomplishing this.

 

HTH.

 

q.

View solution in original post

1 Reply 1

qsnyder
Cisco Employee
Cisco Employee

Based on looking at the Terraform resource docs for that resource, it doesn't appear that one exists. 

https://registry.terraform.io/providers/CiscoDevNet/aci/latest/docs/resources/bgp_peer_connectivity_profile

 

I can ask around internally and see if there is some other way of accomplishing this.

 

HTH.

 

q.