-
Notifications
You must be signed in to change notification settings - Fork 10
Prevent gNMI set operation error "bad-element": "keepalive-interval" … #286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Prevent gNMI set operation error "bad-element": "keepalive-interval" … #286
Conversation
…when removing BGP timers from router_bgp_vrf_neighbor
Is this something that has changed with a specific version? Looking at our CI pipelines, the existing code seems to work with 7.6.1 and 24.2.2. |
I don't think it's version specific. Without the |
To reproduce the issue against 24.2.2: main.tf terraform {
required_providers {
iosxr = {
source = "CiscoDevNet/iosxr"
version = ">= 0.5.3"
}
}
}
provider "iosxr" {
username = "***"
password = "***"
host = "1.2.3.4:57777"
}
resource "iosxr_vrf" "vrf_TST_VRF_TOM" {
vrf_name = "TST_VRF_TOM"
address_family_ipv4_unicast = true
rd_two_byte_as_as_number = "65123"
rd_two_byte_as_index = 1
}
resource "iosxr_router_bgp_vrf" "router_bgp_vrf_TST_VRF_TOM" {
as_number = 65003
vrf_name = iosxr_vrf.vrf_TST_VRF_TOM.vrf_name
bgp_router_id = "99.99.99.99"
neighbors = [
{
neighbor_address = "1.2.3.4"
remote_as = "65123"
# timers_keepalive_interval = "5"
# timers_holdtime = "20"
}
]
} commenting out
|
@danischm did you get chance to review this? |
…when removing BGP timers from router_bgp_vrf_neighbor