-
Notifications
You must be signed in to change notification settings - Fork 24
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
missing attributes in resource iosxe_interface_tunnel #130
Comments
Can you please provide complete CLI commands? |
last line just example with VRF name "GLOBAL"
without this command it's not allow to use source address in vrf. router looking for tunnel source in global table. |
I needed to configure tunnel vrf. I ended up with the following code: locals {
tunnel_number = 10
tunnel_vrf = "GLOBAL"
}
resource "iosxe_restconf" "tunnel" {
path = format("Cisco-IOS-XE-native:native/interface/Tunnel=%s/Cisco-IOS-XE-tunnel:tunnel/vrf-config/vrf-common", local.tunnel_number)
attributes = {
vrf = local.tunnel_vrf
}
} |
this is mine.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
The following attributes are missing in the resource iosxe_interface_tunnel.
In the context of ipsec protected tunnels these are important.
ip mtu 1400
tunnel vrf X
kind regards
The text was updated successfully, but these errors were encountered: