1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. CiscoVpnInterfaceGreFeatureTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.CiscoVpnInterfaceGreFeatureTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a Cisco VPN Interface GRE feature template.

    • Minimum SD-WAN Manager version: 15.0.0

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.CiscoVpnInterfaceGreFeatureTemplate;
    import com.pulumi.sdwan.CiscoVpnInterfaceGreFeatureTemplateArgs;
    import com.pulumi.sdwan.inputs.CiscoVpnInterfaceGreFeatureTemplateAccessListArgs;
    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 CiscoVpnInterfaceGreFeatureTemplate("example", CiscoVpnInterfaceGreFeatureTemplateArgs.builder()        
                .name("Example")
                .description("My Example")
                .deviceTypes("vedge-C8000V")
                .interfaceName("gre0/0")
                .interfaceDescription("My Description")
                .ipAddress("1.1.1.1/24")
                .tunnelSource("1.2.3.4")
                .shutdown(true)
                .tunnelSourceInterface("e1")
                .tunnelDestination("3.4.5.6")
                .application("sig")
                .ipMtu(1500)
                .tcpMssAdjust(1400)
                .clearDontFragment(true)
                .rewriteRule("ACL1")
                .accessLists(CiscoVpnInterfaceGreFeatureTemplateAccessListArgs.builder()
                    .direction("in")
                    .acl_name("ACL2")
                    .build())
                .trackers("TRACKER1")
                .tunnelRouteVia("g0/0")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:CiscoVpnInterfaceGreFeatureTemplate
        properties:
          name: Example
          description: My Example
          deviceTypes:
            - vedge-C8000V
          interfaceName: gre0/0
          interfaceDescription: My Description
          ipAddress: 1.1.1.1/24
          tunnelSource: 1.2.3.4
          shutdown: true
          tunnelSourceInterface: e1
          tunnelDestination: 3.4.5.6
          application: sig
          ipMtu: 1500
          tcpMssAdjust: 1400
          clearDontFragment: true
          rewriteRule: ACL1
          accessLists:
            - direction: in
              acl_name: ACL2
          trackers:
            - TRACKER1
          tunnelRouteVia: g0/0
    

    Create CiscoVpnInterfaceGreFeatureTemplate Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CiscoVpnInterfaceGreFeatureTemplate(name: string, args: CiscoVpnInterfaceGreFeatureTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def CiscoVpnInterfaceGreFeatureTemplate(resource_name: str,
                                            args: CiscoVpnInterfaceGreFeatureTemplateArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def CiscoVpnInterfaceGreFeatureTemplate(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            description: Optional[str] = None,
                                            device_types: Optional[Sequence[str]] = None,
                                            rewrite_rule: Optional[str] = None,
                                            clear_dont_fragment_variable: Optional[str] = None,
                                            rewrite_rule_variable: Optional[str] = None,
                                            application_variable: Optional[str] = None,
                                            application: 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_address: Optional[str] = None,
                                            ip_address_variable: Optional[str] = None,
                                            ip_mtu: Optional[int] = None,
                                            ip_mtu_variable: Optional[str] = None,
                                            name: Optional[str] = None,
                                            tunnel_source_variable: Optional[str] = None,
                                            clear_dont_fragment: Optional[bool] = None,
                                            shutdown: Optional[bool] = None,
                                            shutdown_variable: Optional[str] = None,
                                            tcp_mss_adjust: Optional[int] = None,
                                            tcp_mss_adjust_variable: Optional[str] = None,
                                            tracker_variable: Optional[str] = None,
                                            trackers: Optional[Sequence[str]] = None,
                                            tunnel_destination: Optional[str] = None,
                                            tunnel_destination_variable: Optional[str] = None,
                                            tunnel_route_via: Optional[str] = None,
                                            tunnel_route_via_variable: Optional[str] = None,
                                            tunnel_source: Optional[str] = None,
                                            tunnel_source_interface: Optional[str] = None,
                                            tunnel_source_interface_variable: Optional[str] = None,
                                            access_lists: Optional[Sequence[CiscoVpnInterfaceGreFeatureTemplateAccessListArgs]] = None)
    func NewCiscoVpnInterfaceGreFeatureTemplate(ctx *Context, name string, args CiscoVpnInterfaceGreFeatureTemplateArgs, opts ...ResourceOption) (*CiscoVpnInterfaceGreFeatureTemplate, error)
    public CiscoVpnInterfaceGreFeatureTemplate(string name, CiscoVpnInterfaceGreFeatureTemplateArgs args, CustomResourceOptions? opts = null)
    public CiscoVpnInterfaceGreFeatureTemplate(String name, CiscoVpnInterfaceGreFeatureTemplateArgs args)
    public CiscoVpnInterfaceGreFeatureTemplate(String name, CiscoVpnInterfaceGreFeatureTemplateArgs args, CustomResourceOptions options)
    
    type: sdwan:CiscoVpnInterfaceGreFeatureTemplate
    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 CiscoVpnInterfaceGreFeatureTemplateArgs
    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 CiscoVpnInterfaceGreFeatureTemplateArgs
    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 CiscoVpnInterfaceGreFeatureTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CiscoVpnInterfaceGreFeatureTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CiscoVpnInterfaceGreFeatureTemplateArgs
    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 ciscoVpnInterfaceGreFeatureTemplateResource = new Sdwan.CiscoVpnInterfaceGreFeatureTemplate("ciscoVpnInterfaceGreFeatureTemplateResource", new()
    {
        Description = "string",
        DeviceTypes = new[]
        {
            "string",
        },
        RewriteRule = "string",
        ClearDontFragmentVariable = "string",
        RewriteRuleVariable = "string",
        ApplicationVariable = "string",
        Application = "string",
        InterfaceDescription = "string",
        InterfaceDescriptionVariable = "string",
        InterfaceName = "string",
        InterfaceNameVariable = "string",
        IpAddress = "string",
        IpAddressVariable = "string",
        IpMtu = 0,
        IpMtuVariable = "string",
        Name = "string",
        TunnelSourceVariable = "string",
        ClearDontFragment = false,
        Shutdown = false,
        ShutdownVariable = "string",
        TcpMssAdjust = 0,
        TcpMssAdjustVariable = "string",
        TrackerVariable = "string",
        Trackers = new[]
        {
            "string",
        },
        TunnelDestination = "string",
        TunnelDestinationVariable = "string",
        TunnelRouteVia = "string",
        TunnelRouteViaVariable = "string",
        TunnelSource = "string",
        TunnelSourceInterface = "string",
        TunnelSourceInterfaceVariable = "string",
        AccessLists = new[]
        {
            new Sdwan.Inputs.CiscoVpnInterfaceGreFeatureTemplateAccessListArgs
            {
                AclName = "string",
                AclNameVariable = "string",
                Direction = "string",
                Optional = false,
            },
        },
    });
    
    example, err := sdwan.NewCiscoVpnInterfaceGreFeatureTemplate(ctx, "ciscoVpnInterfaceGreFeatureTemplateResource", &sdwan.CiscoVpnInterfaceGreFeatureTemplateArgs{
    	Description: pulumi.String("string"),
    	DeviceTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RewriteRule:                  pulumi.String("string"),
    	ClearDontFragmentVariable:    pulumi.String("string"),
    	RewriteRuleVariable:          pulumi.String("string"),
    	ApplicationVariable:          pulumi.String("string"),
    	Application:                  pulumi.String("string"),
    	InterfaceDescription:         pulumi.String("string"),
    	InterfaceDescriptionVariable: pulumi.String("string"),
    	InterfaceName:                pulumi.String("string"),
    	InterfaceNameVariable:        pulumi.String("string"),
    	IpAddress:                    pulumi.String("string"),
    	IpAddressVariable:            pulumi.String("string"),
    	IpMtu:                        pulumi.Int(0),
    	IpMtuVariable:                pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	TunnelSourceVariable:         pulumi.String("string"),
    	ClearDontFragment:            pulumi.Bool(false),
    	Shutdown:                     pulumi.Bool(false),
    	ShutdownVariable:             pulumi.String("string"),
    	TcpMssAdjust:                 pulumi.Int(0),
    	TcpMssAdjustVariable:         pulumi.String("string"),
    	TrackerVariable:              pulumi.String("string"),
    	Trackers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TunnelDestination:             pulumi.String("string"),
    	TunnelDestinationVariable:     pulumi.String("string"),
    	TunnelRouteVia:                pulumi.String("string"),
    	TunnelRouteViaVariable:        pulumi.String("string"),
    	TunnelSource:                  pulumi.String("string"),
    	TunnelSourceInterface:         pulumi.String("string"),
    	TunnelSourceInterfaceVariable: pulumi.String("string"),
    	AccessLists: sdwan.CiscoVpnInterfaceGreFeatureTemplateAccessListArray{
    		&sdwan.CiscoVpnInterfaceGreFeatureTemplateAccessListArgs{
    			AclName:         pulumi.String("string"),
    			AclNameVariable: pulumi.String("string"),
    			Direction:       pulumi.String("string"),
    			Optional:        pulumi.Bool(false),
    		},
    	},
    })
    
    var ciscoVpnInterfaceGreFeatureTemplateResource = new CiscoVpnInterfaceGreFeatureTemplate("ciscoVpnInterfaceGreFeatureTemplateResource", CiscoVpnInterfaceGreFeatureTemplateArgs.builder()
        .description("string")
        .deviceTypes("string")
        .rewriteRule("string")
        .clearDontFragmentVariable("string")
        .rewriteRuleVariable("string")
        .applicationVariable("string")
        .application("string")
        .interfaceDescription("string")
        .interfaceDescriptionVariable("string")
        .interfaceName("string")
        .interfaceNameVariable("string")
        .ipAddress("string")
        .ipAddressVariable("string")
        .ipMtu(0)
        .ipMtuVariable("string")
        .name("string")
        .tunnelSourceVariable("string")
        .clearDontFragment(false)
        .shutdown(false)
        .shutdownVariable("string")
        .tcpMssAdjust(0)
        .tcpMssAdjustVariable("string")
        .trackerVariable("string")
        .trackers("string")
        .tunnelDestination("string")
        .tunnelDestinationVariable("string")
        .tunnelRouteVia("string")
        .tunnelRouteViaVariable("string")
        .tunnelSource("string")
        .tunnelSourceInterface("string")
        .tunnelSourceInterfaceVariable("string")
        .accessLists(CiscoVpnInterfaceGreFeatureTemplateAccessListArgs.builder()
            .aclName("string")
            .aclNameVariable("string")
            .direction("string")
            .optional(false)
            .build())
        .build());
    
    cisco_vpn_interface_gre_feature_template_resource = sdwan.CiscoVpnInterfaceGreFeatureTemplate("ciscoVpnInterfaceGreFeatureTemplateResource",
        description="string",
        device_types=["string"],
        rewrite_rule="string",
        clear_dont_fragment_variable="string",
        rewrite_rule_variable="string",
        application_variable="string",
        application="string",
        interface_description="string",
        interface_description_variable="string",
        interface_name="string",
        interface_name_variable="string",
        ip_address="string",
        ip_address_variable="string",
        ip_mtu=0,
        ip_mtu_variable="string",
        name="string",
        tunnel_source_variable="string",
        clear_dont_fragment=False,
        shutdown=False,
        shutdown_variable="string",
        tcp_mss_adjust=0,
        tcp_mss_adjust_variable="string",
        tracker_variable="string",
        trackers=["string"],
        tunnel_destination="string",
        tunnel_destination_variable="string",
        tunnel_route_via="string",
        tunnel_route_via_variable="string",
        tunnel_source="string",
        tunnel_source_interface="string",
        tunnel_source_interface_variable="string",
        access_lists=[sdwan.CiscoVpnInterfaceGreFeatureTemplateAccessListArgs(
            acl_name="string",
            acl_name_variable="string",
            direction="string",
            optional=False,
        )])
    
    const ciscoVpnInterfaceGreFeatureTemplateResource = new sdwan.CiscoVpnInterfaceGreFeatureTemplate("ciscoVpnInterfaceGreFeatureTemplateResource", {
        description: "string",
        deviceTypes: ["string"],
        rewriteRule: "string",
        clearDontFragmentVariable: "string",
        rewriteRuleVariable: "string",
        applicationVariable: "string",
        application: "string",
        interfaceDescription: "string",
        interfaceDescriptionVariable: "string",
        interfaceName: "string",
        interfaceNameVariable: "string",
        ipAddress: "string",
        ipAddressVariable: "string",
        ipMtu: 0,
        ipMtuVariable: "string",
        name: "string",
        tunnelSourceVariable: "string",
        clearDontFragment: false,
        shutdown: false,
        shutdownVariable: "string",
        tcpMssAdjust: 0,
        tcpMssAdjustVariable: "string",
        trackerVariable: "string",
        trackers: ["string"],
        tunnelDestination: "string",
        tunnelDestinationVariable: "string",
        tunnelRouteVia: "string",
        tunnelRouteViaVariable: "string",
        tunnelSource: "string",
        tunnelSourceInterface: "string",
        tunnelSourceInterfaceVariable: "string",
        accessLists: [{
            aclName: "string",
            aclNameVariable: "string",
            direction: "string",
            optional: false,
        }],
    });
    
    type: sdwan:CiscoVpnInterfaceGreFeatureTemplate
    properties:
        accessLists:
            - aclName: string
              aclNameVariable: string
              direction: string
              optional: false
        application: string
        applicationVariable: string
        clearDontFragment: false
        clearDontFragmentVariable: string
        description: string
        deviceTypes:
            - string
        interfaceDescription: string
        interfaceDescriptionVariable: string
        interfaceName: string
        interfaceNameVariable: string
        ipAddress: string
        ipAddressVariable: string
        ipMtu: 0
        ipMtuVariable: string
        name: string
        rewriteRule: string
        rewriteRuleVariable: string
        shutdown: false
        shutdownVariable: string
        tcpMssAdjust: 0
        tcpMssAdjustVariable: string
        trackerVariable: string
        trackers:
            - string
        tunnelDestination: string
        tunnelDestinationVariable: string
        tunnelRouteVia: string
        tunnelRouteViaVariable: string
        tunnelSource: string
        tunnelSourceInterface: string
        tunnelSourceInterfaceVariable: string
        tunnelSourceVariable: string
    

    CiscoVpnInterfaceGreFeatureTemplate 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 CiscoVpnInterfaceGreFeatureTemplate resource accepts the following input properties:

    Description string
    The description of the feature template
    DeviceTypes List<string>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    AccessLists List<CiscoVpnInterfaceGreFeatureTemplateAccessList>
    Apply ACL
    Application string
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    ApplicationVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    InterfaceNameVariable string
    Variable name
    IpAddress string
    Assign IPv4 address
    IpAddressVariable string
    Variable name
    IpMtu int
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    IpMtuVariable string
    Variable name
    Name string
    The name of the feature template
    RewriteRule string
    Name of rewrite rule
    RewriteRuleVariable string
    Variable name
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMssAdjust int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssAdjustVariable string
    Variable name
    TrackerVariable string
    Variable name
    Trackers List<string>
    Enable tracker for this interface
    TunnelDestination string
    Tunnel destination IP Address
    TunnelDestinationVariable string
    Variable name
    TunnelRouteVia string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSource string
    Tunnel source IP Address
    TunnelSourceInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes []string
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    AccessLists []CiscoVpnInterfaceGreFeatureTemplateAccessListArgs
    Apply ACL
    Application string
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    ApplicationVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    InterfaceNameVariable string
    Variable name
    IpAddress string
    Assign IPv4 address
    IpAddressVariable string
    Variable name
    IpMtu int
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    IpMtuVariable string
    Variable name
    Name string
    The name of the feature template
    RewriteRule string
    Name of rewrite rule
    RewriteRuleVariable string
    Variable name
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMssAdjust int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssAdjustVariable string
    Variable name
    TrackerVariable string
    Variable name
    Trackers []string
    Enable tracker for this interface
    TunnelDestination string
    Tunnel destination IP Address
    TunnelDestinationVariable string
    Variable name
    TunnelRouteVia string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSource string
    Tunnel source IP Address
    TunnelSourceInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceVariable string
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    accessLists List<CiscoVpnInterfaceGreFeatureTemplateAccessList>
    Apply ACL
    application String
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    applicationVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interfaceNameVariable String
    Variable name
    ipAddress String
    Assign IPv4 address
    ipAddressVariable String
    Variable name
    ipMtu Integer
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ipMtuVariable String
    Variable name
    name String
    The name of the feature template
    rewriteRule String
    Name of rewrite rule
    rewriteRuleVariable String
    Variable name
    shutdown Boolean
    Administrative state - Default value: true
    shutdownVariable String
    Variable name
    tcpMssAdjust Integer
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssAdjustVariable String
    Variable name
    trackerVariable String
    Variable name
    trackers List<String>
    Enable tracker for this interface
    tunnelDestination String
    Tunnel destination IP Address
    tunnelDestinationVariable String
    Variable name
    tunnelRouteVia String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSource String
    Tunnel source IP Address
    tunnelSourceInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceVariable String
    Variable name
    description string
    The description of the feature template
    deviceTypes string[]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    accessLists CiscoVpnInterfaceGreFeatureTemplateAccessList[]
    Apply ACL
    application string
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    applicationVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable string
    Variable name
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interfaceNameVariable string
    Variable name
    ipAddress string
    Assign IPv4 address
    ipAddressVariable string
    Variable name
    ipMtu number
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ipMtuVariable string
    Variable name
    name string
    The name of the feature template
    rewriteRule string
    Name of rewrite rule
    rewriteRuleVariable string
    Variable name
    shutdown boolean
    Administrative state - Default value: true
    shutdownVariable string
    Variable name
    tcpMssAdjust number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssAdjustVariable string
    Variable name
    trackerVariable string
    Variable name
    trackers string[]
    Enable tracker for this interface
    tunnelDestination string
    Tunnel destination IP Address
    tunnelDestinationVariable string
    Variable name
    tunnelRouteVia string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelRouteViaVariable string
    Variable name
    tunnelSource string
    Tunnel source IP Address
    tunnelSourceInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceVariable string
    Variable name
    description str
    The description of the feature template
    device_types Sequence[str]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    access_lists Sequence[CiscoVpnInterfaceGreFeatureTemplateAccessListArgs]
    Apply ACL
    application str
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    application_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clear_dont_fragment_variable str
    Variable name
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interface_name_variable str
    Variable name
    ip_address str
    Assign IPv4 address
    ip_address_variable str
    Variable name
    ip_mtu int
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ip_mtu_variable str
    Variable name
    name str
    The name of the feature template
    rewrite_rule str
    Name of rewrite rule
    rewrite_rule_variable str
    Variable name
    shutdown bool
    Administrative state - Default value: true
    shutdown_variable str
    Variable name
    tcp_mss_adjust int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcp_mss_adjust_variable str
    Variable name
    tracker_variable str
    Variable name
    trackers Sequence[str]
    Enable tracker for this interface
    tunnel_destination str
    Tunnel destination IP Address
    tunnel_destination_variable str
    Variable name
    tunnel_route_via str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnel_route_via_variable str
    Variable name
    tunnel_source str
    Tunnel source IP Address
    tunnel_source_interface str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnel_source_interface_variable str
    Variable name
    tunnel_source_variable str
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    accessLists List<Property Map>
    Apply ACL
    application String
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    applicationVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interfaceNameVariable String
    Variable name
    ipAddress String
    Assign IPv4 address
    ipAddressVariable String
    Variable name
    ipMtu Number
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ipMtuVariable String
    Variable name
    name String
    The name of the feature template
    rewriteRule String
    Name of rewrite rule
    rewriteRuleVariable String
    Variable name
    shutdown Boolean
    Administrative state - Default value: true
    shutdownVariable String
    Variable name
    tcpMssAdjust Number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssAdjustVariable String
    Variable name
    trackerVariable String
    Variable name
    trackers List<String>
    Enable tracker for this interface
    tunnelDestination String
    Tunnel destination IP Address
    tunnelDestinationVariable String
    Variable name
    tunnelRouteVia String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSource String
    Tunnel source IP Address
    tunnelSourceInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CiscoVpnInterfaceGreFeatureTemplate resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    TemplateType string
    The template type
    Version int
    The version of the feature template
    Id string
    The provider-assigned unique ID for this managed resource.
    TemplateType string
    The template type
    Version int
    The version of the feature template
    id String
    The provider-assigned unique ID for this managed resource.
    templateType String
    The template type
    version Integer
    The version of the feature template
    id string
    The provider-assigned unique ID for this managed resource.
    templateType string
    The template type
    version number
    The version of the feature template
    id str
    The provider-assigned unique ID for this managed resource.
    template_type str
    The template type
    version int
    The version of the feature template
    id String
    The provider-assigned unique ID for this managed resource.
    templateType String
    The template type
    version Number
    The version of the feature template

    Look up Existing CiscoVpnInterfaceGreFeatureTemplate Resource

    Get an existing CiscoVpnInterfaceGreFeatureTemplate 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?: CiscoVpnInterfaceGreFeatureTemplateState, opts?: CustomResourceOptions): CiscoVpnInterfaceGreFeatureTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_lists: Optional[Sequence[CiscoVpnInterfaceGreFeatureTemplateAccessListArgs]] = None,
            application: Optional[str] = None,
            application_variable: Optional[str] = None,
            clear_dont_fragment: Optional[bool] = None,
            clear_dont_fragment_variable: Optional[str] = None,
            description: Optional[str] = None,
            device_types: Optional[Sequence[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_address: Optional[str] = None,
            ip_address_variable: Optional[str] = None,
            ip_mtu: Optional[int] = None,
            ip_mtu_variable: Optional[str] = None,
            name: Optional[str] = None,
            rewrite_rule: Optional[str] = None,
            rewrite_rule_variable: Optional[str] = None,
            shutdown: Optional[bool] = None,
            shutdown_variable: Optional[str] = None,
            tcp_mss_adjust: Optional[int] = None,
            tcp_mss_adjust_variable: Optional[str] = None,
            template_type: Optional[str] = None,
            tracker_variable: Optional[str] = None,
            trackers: Optional[Sequence[str]] = None,
            tunnel_destination: Optional[str] = None,
            tunnel_destination_variable: Optional[str] = None,
            tunnel_route_via: Optional[str] = None,
            tunnel_route_via_variable: Optional[str] = None,
            tunnel_source: Optional[str] = None,
            tunnel_source_interface: Optional[str] = None,
            tunnel_source_interface_variable: Optional[str] = None,
            tunnel_source_variable: Optional[str] = None,
            version: Optional[int] = None) -> CiscoVpnInterfaceGreFeatureTemplate
    func GetCiscoVpnInterfaceGreFeatureTemplate(ctx *Context, name string, id IDInput, state *CiscoVpnInterfaceGreFeatureTemplateState, opts ...ResourceOption) (*CiscoVpnInterfaceGreFeatureTemplate, error)
    public static CiscoVpnInterfaceGreFeatureTemplate Get(string name, Input<string> id, CiscoVpnInterfaceGreFeatureTemplateState? state, CustomResourceOptions? opts = null)
    public static CiscoVpnInterfaceGreFeatureTemplate get(String name, Output<String> id, CiscoVpnInterfaceGreFeatureTemplateState 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.
    The following state arguments are supported:
    AccessLists List<CiscoVpnInterfaceGreFeatureTemplateAccessList>
    Apply ACL
    Application string
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    ApplicationVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes List<string>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    InterfaceNameVariable string
    Variable name
    IpAddress string
    Assign IPv4 address
    IpAddressVariable string
    Variable name
    IpMtu int
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    IpMtuVariable string
    Variable name
    Name string
    The name of the feature template
    RewriteRule string
    Name of rewrite rule
    RewriteRuleVariable string
    Variable name
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMssAdjust int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssAdjustVariable string
    Variable name
    TemplateType string
    The template type
    TrackerVariable string
    Variable name
    Trackers List<string>
    Enable tracker for this interface
    TunnelDestination string
    Tunnel destination IP Address
    TunnelDestinationVariable string
    Variable name
    TunnelRouteVia string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSource string
    Tunnel source IP Address
    TunnelSourceInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceVariable string
    Variable name
    Version int
    The version of the feature template
    AccessLists []CiscoVpnInterfaceGreFeatureTemplateAccessListArgs
    Apply ACL
    Application string
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    ApplicationVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes []string
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    InterfaceNameVariable string
    Variable name
    IpAddress string
    Assign IPv4 address
    IpAddressVariable string
    Variable name
    IpMtu int
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    IpMtuVariable string
    Variable name
    Name string
    The name of the feature template
    RewriteRule string
    Name of rewrite rule
    RewriteRuleVariable string
    Variable name
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMssAdjust int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssAdjustVariable string
    Variable name
    TemplateType string
    The template type
    TrackerVariable string
    Variable name
    Trackers []string
    Enable tracker for this interface
    TunnelDestination string
    Tunnel destination IP Address
    TunnelDestinationVariable string
    Variable name
    TunnelRouteVia string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSource string
    Tunnel source IP Address
    TunnelSourceInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceVariable string
    Variable name
    Version int
    The version of the feature template
    accessLists List<CiscoVpnInterfaceGreFeatureTemplateAccessList>
    Apply ACL
    application String
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    applicationVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interfaceNameVariable String
    Variable name
    ipAddress String
    Assign IPv4 address
    ipAddressVariable String
    Variable name
    ipMtu Integer
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ipMtuVariable String
    Variable name
    name String
    The name of the feature template
    rewriteRule String
    Name of rewrite rule
    rewriteRuleVariable String
    Variable name
    shutdown Boolean
    Administrative state - Default value: true
    shutdownVariable String
    Variable name
    tcpMssAdjust Integer
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssAdjustVariable String
    Variable name
    templateType String
    The template type
    trackerVariable String
    Variable name
    trackers List<String>
    Enable tracker for this interface
    tunnelDestination String
    Tunnel destination IP Address
    tunnelDestinationVariable String
    Variable name
    tunnelRouteVia String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSource String
    Tunnel source IP Address
    tunnelSourceInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceVariable String
    Variable name
    version Integer
    The version of the feature template
    accessLists CiscoVpnInterfaceGreFeatureTemplateAccessList[]
    Apply ACL
    application string
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    applicationVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the feature template
    deviceTypes string[]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interfaceNameVariable string
    Variable name
    ipAddress string
    Assign IPv4 address
    ipAddressVariable string
    Variable name
    ipMtu number
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ipMtuVariable string
    Variable name
    name string
    The name of the feature template
    rewriteRule string
    Name of rewrite rule
    rewriteRuleVariable string
    Variable name
    shutdown boolean
    Administrative state - Default value: true
    shutdownVariable string
    Variable name
    tcpMssAdjust number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssAdjustVariable string
    Variable name
    templateType string
    The template type
    trackerVariable string
    Variable name
    trackers string[]
    Enable tracker for this interface
    tunnelDestination string
    Tunnel destination IP Address
    tunnelDestinationVariable string
    Variable name
    tunnelRouteVia string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelRouteViaVariable string
    Variable name
    tunnelSource string
    Tunnel source IP Address
    tunnelSourceInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceVariable string
    Variable name
    version number
    The version of the feature template
    access_lists Sequence[CiscoVpnInterfaceGreFeatureTemplateAccessListArgs]
    Apply ACL
    application str
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    application_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the feature template
    device_types Sequence[str]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interface_name_variable str
    Variable name
    ip_address str
    Assign IPv4 address
    ip_address_variable str
    Variable name
    ip_mtu int
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ip_mtu_variable str
    Variable name
    name str
    The name of the feature template
    rewrite_rule str
    Name of rewrite rule
    rewrite_rule_variable str
    Variable name
    shutdown bool
    Administrative state - Default value: true
    shutdown_variable str
    Variable name
    tcp_mss_adjust int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcp_mss_adjust_variable str
    Variable name
    template_type str
    The template type
    tracker_variable str
    Variable name
    trackers Sequence[str]
    Enable tracker for this interface
    tunnel_destination str
    Tunnel destination IP Address
    tunnel_destination_variable str
    Variable name
    tunnel_route_via str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnel_route_via_variable str
    Variable name
    tunnel_source str
    Tunnel source IP Address
    tunnel_source_interface str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnel_source_interface_variable str
    Variable name
    tunnel_source_variable str
    Variable name
    version int
    The version of the feature template
    accessLists List<Property Map>
    Apply ACL
    application String
    Enable Application Tunnel Type - Choices: none, sig - Default value: none
    applicationVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irbbridgeid:1-63 or loopback or natpool-<1..31> when present
    interfaceNameVariable String
    Variable name
    ipAddress String
    Assign IPv4 address
    ipAddressVariable String
    Variable name
    ipMtu Number
    Interface MTU <576..2000>, in bytes - Range: 64-18000 - Default value: 1500
    ipMtuVariable String
    Variable name
    name String
    The name of the feature template
    rewriteRule String
    Name of rewrite rule
    rewriteRuleVariable String
    Variable name
    shutdown Boolean
    Administrative state - Default value: true
    shutdownVariable String
    Variable name
    tcpMssAdjust Number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssAdjustVariable String
    Variable name
    templateType String
    The template type
    trackerVariable String
    Variable name
    trackers List<String>
    Enable tracker for this interface
    tunnelDestination String
    Tunnel destination IP Address
    tunnelDestinationVariable String
    Variable name
    tunnelRouteVia String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSource String
    Tunnel source IP Address
    tunnelSourceInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceVariable String
    Variable name
    version Number
    The version of the feature template

    Supporting Types

    CiscoVpnInterfaceGreFeatureTemplateAccessList, CiscoVpnInterfaceGreFeatureTemplateAccessListArgs

    AclName string
    Name of access list
    AclNameVariable string
    Variable name
    Direction string
    Direction

    • Choices: in, out
    Optional bool
    Indicates if list item is considered optional.
    AclName string
    Name of access list
    AclNameVariable string
    Variable name
    Direction string
    Direction

    • Choices: in, out
    Optional bool
    Indicates if list item is considered optional.
    aclName String
    Name of access list
    aclNameVariable String
    Variable name
    direction String
    Direction

    • Choices: in, out
    optional Boolean
    Indicates if list item is considered optional.
    aclName string
    Name of access list
    aclNameVariable string
    Variable name
    direction string
    Direction

    • Choices: in, out
    optional boolean
    Indicates if list item is considered optional.
    acl_name str
    Name of access list
    acl_name_variable str
    Variable name
    direction str
    Direction

    • Choices: in, out
    optional bool
    Indicates if list item is considered optional.
    aclName String
    Name of access list
    aclNameVariable String
    Variable name
    direction String
    Direction

    • Choices: in, out
    optional Boolean
    Indicates if list item is considered optional.

    Import

    $ pulumi import sdwan:index/ciscoVpnInterfaceGreFeatureTemplate:CiscoVpnInterfaceGreFeatureTemplate 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 sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi