sdwan.TransportWanVpnInterfaceGreFeature
Explore with Pulumi AI
This resource can manage a Transport WAN VPN Interface GRE Feature.
- Minimum SD-WAN Manager version: 20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.TransportWanVpnInterfaceGreFeature("example", {
    name: "Example",
    description: "My Example",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
    interfaceName: "gre1",
    interfaceDescription: "gre1",
    ipv4Address: "70.1.1.1",
    ipv4SubnetMask: "255.255.255.0",
    shutdown: true,
    tunnelSourceIpv4Address: "78.1.1.1",
    tunnelDestinationIpv4Address: "79.1.1.1",
    ipMtu: 1500,
    tcpMss: 1460,
    clearDontFragment: false,
    applicationTunnelType: "none",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.TransportWanVpnInterfaceGreFeature("example",
    name="Example",
    description="My Example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
    interface_name="gre1",
    interface_description="gre1",
    ipv4_address="70.1.1.1",
    ipv4_subnet_mask="255.255.255.0",
    shutdown=True,
    tunnel_source_ipv4_address="78.1.1.1",
    tunnel_destination_ipv4_address="79.1.1.1",
    ip_mtu=1500,
    tcp_mss=1460,
    clear_dont_fragment=False,
    application_tunnel_type="none")
package main
import (
	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sdwan.NewTransportWanVpnInterfaceGreFeature(ctx, "example", &sdwan.TransportWanVpnInterfaceGreFeatureArgs{
			Name:                         pulumi.String("Example"),
			Description:                  pulumi.String("My Example"),
			FeatureProfileId:             pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			TransportWanVpnFeatureId:     pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
			InterfaceName:                pulumi.String("gre1"),
			InterfaceDescription:         pulumi.String("gre1"),
			Ipv4Address:                  pulumi.String("70.1.1.1"),
			Ipv4SubnetMask:               pulumi.String("255.255.255.0"),
			Shutdown:                     pulumi.Bool(true),
			TunnelSourceIpv4Address:      pulumi.String("78.1.1.1"),
			TunnelDestinationIpv4Address: pulumi.String("79.1.1.1"),
			IpMtu:                        pulumi.Int(1500),
			TcpMss:                       pulumi.Int(1460),
			ClearDontFragment:            pulumi.Bool(false),
			ApplicationTunnelType:        pulumi.String("none"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.TransportWanVpnInterfaceGreFeature("example", new()
    {
        Name = "Example",
        Description = "My Example",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        TransportWanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
        InterfaceName = "gre1",
        InterfaceDescription = "gre1",
        Ipv4Address = "70.1.1.1",
        Ipv4SubnetMask = "255.255.255.0",
        Shutdown = true,
        TunnelSourceIpv4Address = "78.1.1.1",
        TunnelDestinationIpv4Address = "79.1.1.1",
        IpMtu = 1500,
        TcpMss = 1460,
        ClearDontFragment = false,
        ApplicationTunnelType = "none",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TransportWanVpnInterfaceGreFeature;
import com.pulumi.sdwan.TransportWanVpnInterfaceGreFeatureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new TransportWanVpnInterfaceGreFeature("example", TransportWanVpnInterfaceGreFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .interfaceName("gre1")
            .interfaceDescription("gre1")
            .ipv4Address("70.1.1.1")
            .ipv4SubnetMask("255.255.255.0")
            .shutdown(true)
            .tunnelSourceIpv4Address("78.1.1.1")
            .tunnelDestinationIpv4Address("79.1.1.1")
            .ipMtu(1500)
            .tcpMss(1460)
            .clearDontFragment(false)
            .applicationTunnelType("none")
            .build());
    }
}
resources:
  example:
    type: sdwan:TransportWanVpnInterfaceGreFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
      interfaceName: gre1
      interfaceDescription: gre1
      ipv4Address: 70.1.1.1
      ipv4SubnetMask: 255.255.255.0
      shutdown: true
      tunnelSourceIpv4Address: 78.1.1.1
      tunnelDestinationIpv4Address: 79.1.1.1
      ipMtu: 1500
      tcpMss: 1460
      clearDontFragment: false
      applicationTunnelType: none
Create TransportWanVpnInterfaceGreFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransportWanVpnInterfaceGreFeature(name: string, args: TransportWanVpnInterfaceGreFeatureArgs, opts?: CustomResourceOptions);@overload
def TransportWanVpnInterfaceGreFeature(resource_name: str,
                                       args: TransportWanVpnInterfaceGreFeatureArgs,
                                       opts: Optional[ResourceOptions] = None)
@overload
def TransportWanVpnInterfaceGreFeature(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       feature_profile_id: Optional[str] = None,
                                       name: Optional[str] = None,
                                       tunnel_source_ipv4_address_variable: Optional[str] = None,
                                       ipv4_subnet_mask_variable: Optional[str] = None,
                                       description: Optional[str] = None,
                                       application_tunnel_type_variable: Optional[str] = None,
                                       interface_description: Optional[str] = None,
                                       interface_description_variable: Optional[str] = None,
                                       interface_name: Optional[str] = None,
                                       interface_name_variable: Optional[str] = None,
                                       ip_mtu: Optional[int] = None,
                                       ip_mtu_variable: Optional[str] = None,
                                       ipv4_address: Optional[str] = None,
                                       ipv4_address_variable: Optional[str] = None,
                                       ipv4_subnet_mask: Optional[str] = None,
                                       clear_dont_fragment_variable: Optional[str] = None,
                                       shutdown: Optional[bool] = None,
                                       clear_dont_fragment: Optional[bool] = None,
                                       shutdown_variable: Optional[str] = None,
                                       tcp_mss: Optional[int] = None,
                                       tcp_mss_variable: Optional[str] = None,
                                       transport_wan_vpn_feature_id: Optional[str] = None,
                                       tunnel_destination_ipv4_address: Optional[str] = None,
                                       tunnel_destination_ipv4_address_variable: Optional[str] = None,
                                       tunnel_route_via_loopback: Optional[str] = None,
                                       tunnel_route_via_loopback_variable: Optional[str] = None,
                                       tunnel_source_interface: Optional[str] = None,
                                       tunnel_source_interface_loopback: Optional[str] = None,
                                       tunnel_source_interface_loopback_variable: Optional[str] = None,
                                       tunnel_source_interface_variable: Optional[str] = None,
                                       tunnel_source_ipv4_address: Optional[str] = None,
                                       application_tunnel_type: Optional[str] = None)func NewTransportWanVpnInterfaceGreFeature(ctx *Context, name string, args TransportWanVpnInterfaceGreFeatureArgs, opts ...ResourceOption) (*TransportWanVpnInterfaceGreFeature, error)public TransportWanVpnInterfaceGreFeature(string name, TransportWanVpnInterfaceGreFeatureArgs args, CustomResourceOptions? opts = null)
public TransportWanVpnInterfaceGreFeature(String name, TransportWanVpnInterfaceGreFeatureArgs args)
public TransportWanVpnInterfaceGreFeature(String name, TransportWanVpnInterfaceGreFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportWanVpnInterfaceGreFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TransportWanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TransportWanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TransportWanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransportWanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransportWanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var transportWanVpnInterfaceGreFeatureResource = new Sdwan.TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource", new()
{
    FeatureProfileId = "string",
    Name = "string",
    TunnelSourceIpv4AddressVariable = "string",
    Ipv4SubnetMaskVariable = "string",
    Description = "string",
    ApplicationTunnelTypeVariable = "string",
    InterfaceDescription = "string",
    InterfaceDescriptionVariable = "string",
    InterfaceName = "string",
    InterfaceNameVariable = "string",
    IpMtu = 0,
    IpMtuVariable = "string",
    Ipv4Address = "string",
    Ipv4AddressVariable = "string",
    Ipv4SubnetMask = "string",
    ClearDontFragmentVariable = "string",
    Shutdown = false,
    ClearDontFragment = false,
    ShutdownVariable = "string",
    TcpMss = 0,
    TcpMssVariable = "string",
    TransportWanVpnFeatureId = "string",
    TunnelDestinationIpv4Address = "string",
    TunnelDestinationIpv4AddressVariable = "string",
    TunnelRouteViaLoopback = "string",
    TunnelRouteViaLoopbackVariable = "string",
    TunnelSourceInterface = "string",
    TunnelSourceInterfaceLoopback = "string",
    TunnelSourceInterfaceLoopbackVariable = "string",
    TunnelSourceInterfaceVariable = "string",
    TunnelSourceIpv4Address = "string",
    ApplicationTunnelType = "string",
});
example, err := sdwan.NewTransportWanVpnInterfaceGreFeature(ctx, "transportWanVpnInterfaceGreFeatureResource", &sdwan.TransportWanVpnInterfaceGreFeatureArgs{
	FeatureProfileId:                      pulumi.String("string"),
	Name:                                  pulumi.String("string"),
	TunnelSourceIpv4AddressVariable:       pulumi.String("string"),
	Ipv4SubnetMaskVariable:                pulumi.String("string"),
	Description:                           pulumi.String("string"),
	ApplicationTunnelTypeVariable:         pulumi.String("string"),
	InterfaceDescription:                  pulumi.String("string"),
	InterfaceDescriptionVariable:          pulumi.String("string"),
	InterfaceName:                         pulumi.String("string"),
	InterfaceNameVariable:                 pulumi.String("string"),
	IpMtu:                                 pulumi.Int(0),
	IpMtuVariable:                         pulumi.String("string"),
	Ipv4Address:                           pulumi.String("string"),
	Ipv4AddressVariable:                   pulumi.String("string"),
	Ipv4SubnetMask:                        pulumi.String("string"),
	ClearDontFragmentVariable:             pulumi.String("string"),
	Shutdown:                              pulumi.Bool(false),
	ClearDontFragment:                     pulumi.Bool(false),
	ShutdownVariable:                      pulumi.String("string"),
	TcpMss:                                pulumi.Int(0),
	TcpMssVariable:                        pulumi.String("string"),
	TransportWanVpnFeatureId:              pulumi.String("string"),
	TunnelDestinationIpv4Address:          pulumi.String("string"),
	TunnelDestinationIpv4AddressVariable:  pulumi.String("string"),
	TunnelRouteViaLoopback:                pulumi.String("string"),
	TunnelRouteViaLoopbackVariable:        pulumi.String("string"),
	TunnelSourceInterface:                 pulumi.String("string"),
	TunnelSourceInterfaceLoopback:         pulumi.String("string"),
	TunnelSourceInterfaceLoopbackVariable: pulumi.String("string"),
	TunnelSourceInterfaceVariable:         pulumi.String("string"),
	TunnelSourceIpv4Address:               pulumi.String("string"),
	ApplicationTunnelType:                 pulumi.String("string"),
})
var transportWanVpnInterfaceGreFeatureResource = new TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource", TransportWanVpnInterfaceGreFeatureArgs.builder()
    .featureProfileId("string")
    .name("string")
    .tunnelSourceIpv4AddressVariable("string")
    .ipv4SubnetMaskVariable("string")
    .description("string")
    .applicationTunnelTypeVariable("string")
    .interfaceDescription("string")
    .interfaceDescriptionVariable("string")
    .interfaceName("string")
    .interfaceNameVariable("string")
    .ipMtu(0)
    .ipMtuVariable("string")
    .ipv4Address("string")
    .ipv4AddressVariable("string")
    .ipv4SubnetMask("string")
    .clearDontFragmentVariable("string")
    .shutdown(false)
    .clearDontFragment(false)
    .shutdownVariable("string")
    .tcpMss(0)
    .tcpMssVariable("string")
    .transportWanVpnFeatureId("string")
    .tunnelDestinationIpv4Address("string")
    .tunnelDestinationIpv4AddressVariable("string")
    .tunnelRouteViaLoopback("string")
    .tunnelRouteViaLoopbackVariable("string")
    .tunnelSourceInterface("string")
    .tunnelSourceInterfaceLoopback("string")
    .tunnelSourceInterfaceLoopbackVariable("string")
    .tunnelSourceInterfaceVariable("string")
    .tunnelSourceIpv4Address("string")
    .applicationTunnelType("string")
    .build());
transport_wan_vpn_interface_gre_feature_resource = sdwan.TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource",
    feature_profile_id="string",
    name="string",
    tunnel_source_ipv4_address_variable="string",
    ipv4_subnet_mask_variable="string",
    description="string",
    application_tunnel_type_variable="string",
    interface_description="string",
    interface_description_variable="string",
    interface_name="string",
    interface_name_variable="string",
    ip_mtu=0,
    ip_mtu_variable="string",
    ipv4_address="string",
    ipv4_address_variable="string",
    ipv4_subnet_mask="string",
    clear_dont_fragment_variable="string",
    shutdown=False,
    clear_dont_fragment=False,
    shutdown_variable="string",
    tcp_mss=0,
    tcp_mss_variable="string",
    transport_wan_vpn_feature_id="string",
    tunnel_destination_ipv4_address="string",
    tunnel_destination_ipv4_address_variable="string",
    tunnel_route_via_loopback="string",
    tunnel_route_via_loopback_variable="string",
    tunnel_source_interface="string",
    tunnel_source_interface_loopback="string",
    tunnel_source_interface_loopback_variable="string",
    tunnel_source_interface_variable="string",
    tunnel_source_ipv4_address="string",
    application_tunnel_type="string")
const transportWanVpnInterfaceGreFeatureResource = new sdwan.TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource", {
    featureProfileId: "string",
    name: "string",
    tunnelSourceIpv4AddressVariable: "string",
    ipv4SubnetMaskVariable: "string",
    description: "string",
    applicationTunnelTypeVariable: "string",
    interfaceDescription: "string",
    interfaceDescriptionVariable: "string",
    interfaceName: "string",
    interfaceNameVariable: "string",
    ipMtu: 0,
    ipMtuVariable: "string",
    ipv4Address: "string",
    ipv4AddressVariable: "string",
    ipv4SubnetMask: "string",
    clearDontFragmentVariable: "string",
    shutdown: false,
    clearDontFragment: false,
    shutdownVariable: "string",
    tcpMss: 0,
    tcpMssVariable: "string",
    transportWanVpnFeatureId: "string",
    tunnelDestinationIpv4Address: "string",
    tunnelDestinationIpv4AddressVariable: "string",
    tunnelRouteViaLoopback: "string",
    tunnelRouteViaLoopbackVariable: "string",
    tunnelSourceInterface: "string",
    tunnelSourceInterfaceLoopback: "string",
    tunnelSourceInterfaceLoopbackVariable: "string",
    tunnelSourceInterfaceVariable: "string",
    tunnelSourceIpv4Address: "string",
    applicationTunnelType: "string",
});
type: sdwan:TransportWanVpnInterfaceGreFeature
properties:
    applicationTunnelType: string
    applicationTunnelTypeVariable: string
    clearDontFragment: false
    clearDontFragmentVariable: string
    description: string
    featureProfileId: string
    interfaceDescription: string
    interfaceDescriptionVariable: string
    interfaceName: string
    interfaceNameVariable: string
    ipMtu: 0
    ipMtuVariable: string
    ipv4Address: string
    ipv4AddressVariable: string
    ipv4SubnetMask: string
    ipv4SubnetMaskVariable: string
    name: string
    shutdown: false
    shutdownVariable: string
    tcpMss: 0
    tcpMssVariable: string
    transportWanVpnFeatureId: string
    tunnelDestinationIpv4Address: string
    tunnelDestinationIpv4AddressVariable: string
    tunnelRouteViaLoopback: string
    tunnelRouteViaLoopbackVariable: string
    tunnelSourceInterface: string
    tunnelSourceInterfaceLoopback: string
    tunnelSourceInterfaceLoopbackVariable: string
    tunnelSourceInterfaceVariable: string
    tunnelSourceIpv4Address: string
    tunnelSourceIpv4AddressVariable: string
TransportWanVpnInterfaceGreFeature Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The TransportWanVpnInterfaceGreFeature resource accepts the following input properties:
- FeatureProfile stringId 
- Feature Profile ID
- ApplicationTunnel stringType 
- Enable Application Tunnel Type - Choices: none,sig
- ApplicationTunnel stringType Variable 
- Variable name
- ClearDont boolFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- ClearDont stringFragment Variable 
- Variable name
- Description string
- The description of the Feature
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceName string
- Interface name (1..255)
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- Ipv4SubnetMask stringVariable 
- Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Administrative state - Default value: false
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- TcpMss stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- TunnelDestination stringIpv4Address Variable 
- Variable name
- TunnelRoute stringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- TunnelRoute stringVia Loopback Variable 
- Variable name
- TunnelSource stringInterface 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback Variable 
- Variable name
- TunnelSource stringInterface Variable 
- Variable name
- TunnelSource stringIpv4Address 
- Tunnel source IP Address
- TunnelSource stringIpv4Address Variable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- ApplicationTunnel stringType 
- Enable Application Tunnel Type - Choices: none,sig
- ApplicationTunnel stringType Variable 
- Variable name
- ClearDont boolFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- ClearDont stringFragment Variable 
- Variable name
- Description string
- The description of the Feature
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceName string
- Interface name (1..255)
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- Ipv4SubnetMask stringVariable 
- Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Administrative state - Default value: false
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- TcpMss stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- TunnelDestination stringIpv4Address Variable 
- Variable name
- TunnelRoute stringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- TunnelRoute stringVia Loopback Variable 
- Variable name
- TunnelSource stringInterface 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback Variable 
- Variable name
- TunnelSource stringInterface Variable 
- Variable name
- TunnelSource stringIpv4Address 
- Tunnel source IP Address
- TunnelSource stringIpv4Address Variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- applicationTunnel StringType 
- Enable Application Tunnel Type - Choices: none,sig
- applicationTunnel StringType Variable 
- Variable name
- clearDont BooleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clearDont StringFragment Variable 
- Variable name
- description String
- The description of the Feature
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceName String
- Interface name (1..255)
- interfaceName StringVariable 
- Variable name
- ipMtu Integer
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4SubnetMask StringVariable 
- Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Administrative state - Default value: false
- shutdownVariable String
- Variable name
- tcpMss Integer
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcpMss StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination StringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination StringIpv4Address Variable 
- Variable name
- tunnelRoute StringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnelRoute StringVia Loopback Variable 
- Variable name
- tunnelSource StringInterface 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback Variable 
- Variable name
- tunnelSource StringInterface Variable 
- Variable name
- tunnelSource StringIpv4Address 
- Tunnel source IP Address
- tunnelSource StringIpv4Address Variable 
- Variable name
- featureProfile stringId 
- Feature Profile ID
- applicationTunnel stringType 
- Enable Application Tunnel Type - Choices: none,sig
- applicationTunnel stringType Variable 
- Variable name
- clearDont booleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clearDont stringFragment Variable 
- Variable name
- description string
- The description of the Feature
- interfaceDescription string
- Interface description
- interfaceDescription stringVariable 
- Variable name
- interfaceName string
- Interface name (1..255)
- interfaceName stringVariable 
- Variable name
- ipMtu number
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ipMtu stringVariable 
- Variable name
- ipv4Address string
- ipv4AddressVariable string
- Variable name
- ipv4SubnetMask string
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4SubnetMask stringVariable 
- Variable name
- name string
- The name of the Feature
- shutdown boolean
- Administrative state - Default value: false
- shutdownVariable string
- Variable name
- tcpMss number
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcpMss stringVariable 
- Variable name
- transportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination stringIpv4Address Variable 
- Variable name
- tunnelRoute stringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnelRoute stringVia Loopback Variable 
- Variable name
- tunnelSource stringInterface 
- <1..32 characters> Interface name
- tunnelSource stringInterface Loopback 
- <1..32 characters> Interface name
- tunnelSource stringInterface Loopback Variable 
- Variable name
- tunnelSource stringInterface Variable 
- Variable name
- tunnelSource stringIpv4Address 
- Tunnel source IP Address
- tunnelSource stringIpv4Address Variable 
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- application_tunnel_ strtype 
- Enable Application Tunnel Type - Choices: none,sig
- application_tunnel_ strtype_ variable 
- Variable name
- clear_dont_ boolfragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clear_dont_ strfragment_ variable 
- Variable name
- description str
- The description of the Feature
- interface_description str
- Interface description
- interface_description_ strvariable 
- Variable name
- interface_name str
- Interface name (1..255)
- interface_name_ strvariable 
- Variable name
- ip_mtu int
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ip_mtu_ strvariable 
- Variable name
- ipv4_address str
- ipv4_address_ strvariable 
- Variable name
- ipv4_subnet_ strmask 
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4_subnet_ strmask_ variable 
- Variable name
- name str
- The name of the Feature
- shutdown bool
- Administrative state - Default value: false
- shutdown_variable str
- Variable name
- tcp_mss int
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcp_mss_ strvariable 
- Variable name
- transport_wan_ strvpn_ feature_ id 
- Transport WAN VPN Feature ID
- tunnel_destination_ stripv4_ address 
- Tunnel destination IP Address
- tunnel_destination_ stripv4_ address_ variable 
- Variable name
- tunnel_route_ strvia_ loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnel_route_ strvia_ loopback_ variable 
- Variable name
- tunnel_source_ strinterface 
- <1..32 characters> Interface name
- tunnel_source_ strinterface_ loopback 
- <1..32 characters> Interface name
- tunnel_source_ strinterface_ loopback_ variable 
- Variable name
- tunnel_source_ strinterface_ variable 
- Variable name
- tunnel_source_ stripv4_ address 
- Tunnel source IP Address
- tunnel_source_ stripv4_ address_ variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- applicationTunnel StringType 
- Enable Application Tunnel Type - Choices: none,sig
- applicationTunnel StringType Variable 
- Variable name
- clearDont BooleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clearDont StringFragment Variable 
- Variable name
- description String
- The description of the Feature
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceName String
- Interface name (1..255)
- interfaceName StringVariable 
- Variable name
- ipMtu Number
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4SubnetMask StringVariable 
- Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Administrative state - Default value: false
- shutdownVariable String
- Variable name
- tcpMss Number
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcpMss StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination StringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination StringIpv4Address Variable 
- Variable name
- tunnelRoute StringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnelRoute StringVia Loopback Variable 
- Variable name
- tunnelSource StringInterface 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback Variable 
- Variable name
- tunnelSource StringInterface Variable 
- Variable name
- tunnelSource StringIpv4Address 
- Tunnel source IP Address
- tunnelSource StringIpv4Address Variable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the TransportWanVpnInterfaceGreFeature resource produces the following output properties:
Look up Existing TransportWanVpnInterfaceGreFeature Resource
Get an existing TransportWanVpnInterfaceGreFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TransportWanVpnInterfaceGreFeatureState, opts?: CustomResourceOptions): TransportWanVpnInterfaceGreFeature@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_tunnel_type: Optional[str] = None,
        application_tunnel_type_variable: Optional[str] = None,
        clear_dont_fragment: Optional[bool] = None,
        clear_dont_fragment_variable: Optional[str] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        interface_description: Optional[str] = None,
        interface_description_variable: Optional[str] = None,
        interface_name: Optional[str] = None,
        interface_name_variable: Optional[str] = None,
        ip_mtu: Optional[int] = None,
        ip_mtu_variable: Optional[str] = None,
        ipv4_address: Optional[str] = None,
        ipv4_address_variable: Optional[str] = None,
        ipv4_subnet_mask: Optional[str] = None,
        ipv4_subnet_mask_variable: Optional[str] = None,
        name: Optional[str] = None,
        shutdown: Optional[bool] = None,
        shutdown_variable: Optional[str] = None,
        tcp_mss: Optional[int] = None,
        tcp_mss_variable: Optional[str] = None,
        transport_wan_vpn_feature_id: Optional[str] = None,
        tunnel_destination_ipv4_address: Optional[str] = None,
        tunnel_destination_ipv4_address_variable: Optional[str] = None,
        tunnel_route_via_loopback: Optional[str] = None,
        tunnel_route_via_loopback_variable: Optional[str] = None,
        tunnel_source_interface: Optional[str] = None,
        tunnel_source_interface_loopback: Optional[str] = None,
        tunnel_source_interface_loopback_variable: Optional[str] = None,
        tunnel_source_interface_variable: Optional[str] = None,
        tunnel_source_ipv4_address: Optional[str] = None,
        tunnel_source_ipv4_address_variable: Optional[str] = None,
        version: Optional[int] = None) -> TransportWanVpnInterfaceGreFeaturefunc GetTransportWanVpnInterfaceGreFeature(ctx *Context, name string, id IDInput, state *TransportWanVpnInterfaceGreFeatureState, opts ...ResourceOption) (*TransportWanVpnInterfaceGreFeature, error)public static TransportWanVpnInterfaceGreFeature Get(string name, Input<string> id, TransportWanVpnInterfaceGreFeatureState? state, CustomResourceOptions? opts = null)public static TransportWanVpnInterfaceGreFeature get(String name, Output<String> id, TransportWanVpnInterfaceGreFeatureState state, CustomResourceOptions options)Resource lookup is not supported in YAML- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- ApplicationTunnel stringType 
- Enable Application Tunnel Type - Choices: none,sig
- ApplicationTunnel stringType Variable 
- Variable name
- ClearDont boolFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- ClearDont stringFragment Variable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceName string
- Interface name (1..255)
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- Ipv4SubnetMask stringVariable 
- Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Administrative state - Default value: false
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- TcpMss stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- TunnelDestination stringIpv4Address Variable 
- Variable name
- TunnelRoute stringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- TunnelRoute stringVia Loopback Variable 
- Variable name
- TunnelSource stringInterface 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback Variable 
- Variable name
- TunnelSource stringInterface Variable 
- Variable name
- TunnelSource stringIpv4Address 
- Tunnel source IP Address
- TunnelSource stringIpv4Address Variable 
- Variable name
- Version int
- The version of the Feature
- ApplicationTunnel stringType 
- Enable Application Tunnel Type - Choices: none,sig
- ApplicationTunnel stringType Variable 
- Variable name
- ClearDont boolFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- ClearDont stringFragment Variable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceName string
- Interface name (1..255)
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- Ipv4SubnetMask stringVariable 
- Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Administrative state - Default value: false
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- TcpMss stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- TunnelDestination stringIpv4Address Variable 
- Variable name
- TunnelRoute stringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- TunnelRoute stringVia Loopback Variable 
- Variable name
- TunnelSource stringInterface 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback 
- <1..32 characters> Interface name
- TunnelSource stringInterface Loopback Variable 
- Variable name
- TunnelSource stringInterface Variable 
- Variable name
- TunnelSource stringIpv4Address 
- Tunnel source IP Address
- TunnelSource stringIpv4Address Variable 
- Variable name
- Version int
- The version of the Feature
- applicationTunnel StringType 
- Enable Application Tunnel Type - Choices: none,sig
- applicationTunnel StringType Variable 
- Variable name
- clearDont BooleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clearDont StringFragment Variable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceName String
- Interface name (1..255)
- interfaceName StringVariable 
- Variable name
- ipMtu Integer
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4SubnetMask StringVariable 
- Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Administrative state - Default value: false
- shutdownVariable String
- Variable name
- tcpMss Integer
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcpMss StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination StringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination StringIpv4Address Variable 
- Variable name
- tunnelRoute StringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnelRoute StringVia Loopback Variable 
- Variable name
- tunnelSource StringInterface 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback Variable 
- Variable name
- tunnelSource StringInterface Variable 
- Variable name
- tunnelSource StringIpv4Address 
- Tunnel source IP Address
- tunnelSource StringIpv4Address Variable 
- Variable name
- version Integer
- The version of the Feature
- applicationTunnel stringType 
- Enable Application Tunnel Type - Choices: none,sig
- applicationTunnel stringType Variable 
- Variable name
- clearDont booleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clearDont stringFragment Variable 
- Variable name
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- interfaceDescription string
- Interface description
- interfaceDescription stringVariable 
- Variable name
- interfaceName string
- Interface name (1..255)
- interfaceName stringVariable 
- Variable name
- ipMtu number
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ipMtu stringVariable 
- Variable name
- ipv4Address string
- ipv4AddressVariable string
- Variable name
- ipv4SubnetMask string
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4SubnetMask stringVariable 
- Variable name
- name string
- The name of the Feature
- shutdown boolean
- Administrative state - Default value: false
- shutdownVariable string
- Variable name
- tcpMss number
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcpMss stringVariable 
- Variable name
- transportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination stringIpv4Address Variable 
- Variable name
- tunnelRoute stringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnelRoute stringVia Loopback Variable 
- Variable name
- tunnelSource stringInterface 
- <1..32 characters> Interface name
- tunnelSource stringInterface Loopback 
- <1..32 characters> Interface name
- tunnelSource stringInterface Loopback Variable 
- Variable name
- tunnelSource stringInterface Variable 
- Variable name
- tunnelSource stringIpv4Address 
- Tunnel source IP Address
- tunnelSource stringIpv4Address Variable 
- Variable name
- version number
- The version of the Feature
- application_tunnel_ strtype 
- Enable Application Tunnel Type - Choices: none,sig
- application_tunnel_ strtype_ variable 
- Variable name
- clear_dont_ boolfragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clear_dont_ strfragment_ variable 
- Variable name
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- interface_description str
- Interface description
- interface_description_ strvariable 
- Variable name
- interface_name str
- Interface name (1..255)
- interface_name_ strvariable 
- Variable name
- ip_mtu int
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ip_mtu_ strvariable 
- Variable name
- ipv4_address str
- ipv4_address_ strvariable 
- Variable name
- ipv4_subnet_ strmask 
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4_subnet_ strmask_ variable 
- Variable name
- name str
- The name of the Feature
- shutdown bool
- Administrative state - Default value: false
- shutdown_variable str
- Variable name
- tcp_mss int
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcp_mss_ strvariable 
- Variable name
- transport_wan_ strvpn_ feature_ id 
- Transport WAN VPN Feature ID
- tunnel_destination_ stripv4_ address 
- Tunnel destination IP Address
- tunnel_destination_ stripv4_ address_ variable 
- Variable name
- tunnel_route_ strvia_ loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnel_route_ strvia_ loopback_ variable 
- Variable name
- tunnel_source_ strinterface 
- <1..32 characters> Interface name
- tunnel_source_ strinterface_ loopback 
- <1..32 characters> Interface name
- tunnel_source_ strinterface_ loopback_ variable 
- Variable name
- tunnel_source_ strinterface_ variable 
- Variable name
- tunnel_source_ stripv4_ address 
- Tunnel source IP Address
- tunnel_source_ stripv4_ address_ variable 
- Variable name
- version int
- The version of the Feature
- applicationTunnel StringType 
- Enable Application Tunnel Type - Choices: none,sig
- applicationTunnel StringType Variable 
- Variable name
- clearDont BooleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
- clearDont StringFragment Variable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceName String
- Interface name (1..255)
- interfaceName StringVariable 
- Variable name
- ipMtu Number
- Interface MTU <576..9976>, in bytes - Range: 576-9976- Default value:1500
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ipv4SubnetMask StringVariable 
- Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Administrative state - Default value: false
- shutdownVariable String
- Variable name
- tcpMss Number
- TCP MSS on SYN packets, in bytes - Range: 500-1460
- tcpMss StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination StringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination StringIpv4Address Variable 
- Variable name
- tunnelRoute StringVia Loopback 
- <1..32 characters> Interface name, can't be Loopback interface
- tunnelRoute StringVia Loopback Variable 
- Variable name
- tunnelSource StringInterface 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback 
- <1..32 characters> Interface name
- tunnelSource StringInterface Loopback Variable 
- Variable name
- tunnelSource StringInterface Variable 
- Variable name
- tunnelSource StringIpv4Address 
- Tunnel source IP Address
- tunnelSource StringIpv4Address Variable 
- Variable name
- version Number
- The version of the Feature
Import
$ pulumi import sdwan:index/transportWanVpnInterfaceGreFeature:TransportWanVpnInterfaceGreFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
