CiscoDevNet/terraform-provider-iosxe

missing attributes in resource iosxe_interface_tunnel

Opened this issue · 2 comments

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

Can you please provide complete CLI commands?
As MTU support is already added in config.

cisco(config-if)#tunnel vrf ?
  WORD          vrf table name
  multiplexing  multiple VRFs multiplexing

cisco(config-if)#tunnel vrf GLOBAL

last line just example with VRF name "GLOBAL"
full interface config:

interface Tunnel0
 vrf forwarding client
 ip address 169.254.16.0 255.255.255.254
 tunnel source 172.16.0.0
 tunnel destination 10.128.0.5
 tunnel vrf GLOBAL
end

without this command it's not allow to use source address in vrf. router looking for tunnel source in global table.