1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. getTransportWanVpnInterfaceIpsecFeature
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

sdwan.getTransportWanVpnInterfaceIpsecFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

    This data source can read the Transport WAN VPN Interface IPSEC Feature.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getTransportWanVpnInterfaceIpsecFeature({
        id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_transport_wan_vpn_interface_ipsec_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037")
    
    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.LookupTransportWanVpnInterfaceIpsecFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceIpsecFeatureArgs{
    			Id:                       "f6b2c44c-693c-4763-b010-895aa3d236bd",
    			FeatureProfileId:         "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    			TransportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
    		}, nil)
    		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 = Sdwan.GetTransportWanVpnInterfaceIpsecFeature.Invoke(new()
        {
            Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            TransportWanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SdwanFunctions;
    import com.pulumi.sdwan.inputs.GetTransportWanVpnInterfaceIpsecFeatureArgs;
    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) {
            final var example = SdwanFunctions.getTransportWanVpnInterfaceIpsecFeature(GetTransportWanVpnInterfaceIpsecFeatureArgs.builder()
                .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: sdwan:getTransportWanVpnInterfaceIpsecFeature
          Arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
            transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
    

    Using getTransportWanVpnInterfaceIpsecFeature

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getTransportWanVpnInterfaceIpsecFeature(args: GetTransportWanVpnInterfaceIpsecFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceIpsecFeatureResult>
    function getTransportWanVpnInterfaceIpsecFeatureOutput(args: GetTransportWanVpnInterfaceIpsecFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceIpsecFeatureResult>
    def get_transport_wan_vpn_interface_ipsec_feature(feature_profile_id: Optional[str] = None,
                                                      id: Optional[str] = None,
                                                      transport_wan_vpn_feature_id: Optional[str] = None,
                                                      opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceIpsecFeatureResult
    def get_transport_wan_vpn_interface_ipsec_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
                                                      id: Optional[pulumi.Input[str]] = None,
                                                      transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
                                                      opts: Optional[InvokeOptions] = None) -> Output[GetTransportWanVpnInterfaceIpsecFeatureResult]
    func LookupTransportWanVpnInterfaceIpsecFeature(ctx *Context, args *LookupTransportWanVpnInterfaceIpsecFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceIpsecFeatureResult, error)
    func LookupTransportWanVpnInterfaceIpsecFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceIpsecFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceIpsecFeatureResultOutput

    > Note: This function is named LookupTransportWanVpnInterfaceIpsecFeature in the Go SDK.

    public static class GetTransportWanVpnInterfaceIpsecFeature 
    {
        public static Task<GetTransportWanVpnInterfaceIpsecFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceIpsecFeatureArgs args, InvokeOptions? opts = null)
        public static Output<GetTransportWanVpnInterfaceIpsecFeatureResult> Invoke(GetTransportWanVpnInterfaceIpsecFeatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTransportWanVpnInterfaceIpsecFeatureResult> getTransportWanVpnInterfaceIpsecFeature(GetTransportWanVpnInterfaceIpsecFeatureArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: sdwan:index/getTransportWanVpnInterfaceIpsecFeature:getTransportWanVpnInterfaceIpsecFeature
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    transport_wan_vpn_feature_id str
    Transport WAN VPN Feature ID
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID

    getTransportWanVpnInterfaceIpsecFeature Result

    The following output properties are available:

    ApplicationTunnelType string
    Enable Application Tunnel Type
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries
    DpdRetriesVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    IkeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    IkeCiphersuiteVariable string
    Variable name
    IkeDiffieHellmanGroup string
    IKE Diffie Hellman Groups
    IkeDiffieHellmanGroupVariable string
    Variable name
    IkeIdLocalEndPoint string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeIdLocalEndPointVariable string
    Variable name
    IkeIdRemoteEndPoint string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeIdRemoteEndPointVariable string
    Variable name
    IkeIntegrityProtocol string
    IKE integrity protocol
    IkeIntegrityProtocolVariable string
    Variable name
    IkePresharedKey string
    Use preshared key to authenticate IKE peer
    IkePresharedKeyVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval \n\n seconds
    IkeRekeyIntervalVariable string
    Variable name
    IkeVersion int
    IKE Version \n\n
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: IPsec when present
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU \n\n, in bytes
    IpMtuVariable string
    Variable name
    IpsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval \n\n seconds
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    PerfectForwardSecrecyVariable string
    Variable name
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes
    TcpMssVariable string
    Variable name
    TrackerId string
    Enable tracker for this interface
    TrackerIdVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelDestinationIpv4SubnetMask string
    TunnelDestinationIpv4SubnetMaskVariable string
    Variable name
    TunnelRouteVia string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSourceInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    TunnelSourceIpv4AddressVariable string
    Variable name
    TunnelSourceIpv4SubnetMask string
    TunnelSourceIpv4SubnetMaskVariable string
    Variable name
    Version int
    The version of the Feature
    ApplicationTunnelType string
    Enable Application Tunnel Type
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries
    DpdRetriesVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    IkeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    IkeCiphersuiteVariable string
    Variable name
    IkeDiffieHellmanGroup string
    IKE Diffie Hellman Groups
    IkeDiffieHellmanGroupVariable string
    Variable name
    IkeIdLocalEndPoint string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeIdLocalEndPointVariable string
    Variable name
    IkeIdRemoteEndPoint string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeIdRemoteEndPointVariable string
    Variable name
    IkeIntegrityProtocol string
    IKE integrity protocol
    IkeIntegrityProtocolVariable string
    Variable name
    IkePresharedKey string
    Use preshared key to authenticate IKE peer
    IkePresharedKeyVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval \n\n seconds
    IkeRekeyIntervalVariable string
    Variable name
    IkeVersion int
    IKE Version \n\n
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: IPsec when present
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU \n\n, in bytes
    IpMtuVariable string
    Variable name
    IpsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval \n\n seconds
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    PerfectForwardSecrecyVariable string
    Variable name
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes
    TcpMssVariable string
    Variable name
    TrackerId string
    Enable tracker for this interface
    TrackerIdVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelDestinationIpv4SubnetMask string
    TunnelDestinationIpv4SubnetMaskVariable string
    Variable name
    TunnelRouteVia string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSourceInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    TunnelSourceIpv4AddressVariable string
    Variable name
    TunnelSourceIpv4SubnetMask string
    TunnelSourceIpv4SubnetMaskVariable string
    Variable name
    Version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Integer
    IKE keepalive interval (seconds)
    dpdIntervalVariable String
    Variable name
    dpdRetries Integer
    IKE keepalive retries
    dpdRetriesVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    ikeCiphersuite String
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable String
    Variable name
    ikeDiffieHellmanGroup String
    IKE Diffie Hellman Groups
    ikeDiffieHellmanGroupVariable String
    Variable name
    ikeIdLocalEndPoint String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeIdLocalEndPointVariable String
    Variable name
    ikeIdRemoteEndPoint String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeIdRemoteEndPointVariable String
    Variable name
    ikeIntegrityProtocol String
    IKE integrity protocol
    ikeIntegrityProtocolVariable String
    Variable name
    ikePresharedKey String
    Use preshared key to authenticate IKE peer
    ikePresharedKeyVariable String
    Variable name
    ikeRekeyInterval Integer
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable String
    Variable name
    ikeVersion Integer
    IKE Version \n\n
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: IPsec when present
    interfaceNameVariable String
    Variable name
    ipMtu Integer
    Interface MTU \n\n, in bytes
    ipMtuVariable String
    Variable name
    ipsecCiphersuite String
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Integer
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Integer
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    perfectForwardSecrecy String
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable String
    Variable name
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes
    tcpMssVariable String
    Variable name
    trackerId String
    Enable tracker for this interface
    trackerIdVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelDestinationIpv4SubnetMask String
    tunnelDestinationIpv4SubnetMaskVariable String
    Variable name
    tunnelRouteVia String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSourceInterface String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    tunnelSourceIpv4AddressVariable String
    Variable name
    tunnelSourceIpv4SubnetMask String
    tunnelSourceIpv4SubnetMaskVariable String
    Variable name
    version Integer
    The version of the Feature
    applicationTunnelType string
    Enable Application Tunnel Type
    applicationTunnelTypeVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the Feature
    dpdInterval number
    IKE keepalive interval (seconds)
    dpdIntervalVariable string
    Variable name
    dpdRetries number
    IKE keepalive retries
    dpdRetriesVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    ikeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable string
    Variable name
    ikeDiffieHellmanGroup string
    IKE Diffie Hellman Groups
    ikeDiffieHellmanGroupVariable string
    Variable name
    ikeIdLocalEndPoint string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeIdLocalEndPointVariable string
    Variable name
    ikeIdRemoteEndPoint string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeIdRemoteEndPointVariable string
    Variable name
    ikeIntegrityProtocol string
    IKE integrity protocol
    ikeIntegrityProtocolVariable string
    Variable name
    ikePresharedKey string
    Use preshared key to authenticate IKE peer
    ikePresharedKeyVariable string
    Variable name
    ikeRekeyInterval number
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable string
    Variable name
    ikeVersion number
    IKE Version \n\n
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name: IPsec when present
    interfaceNameVariable string
    Variable name
    ipMtu number
    Interface MTU \n\n, in bytes
    ipMtuVariable string
    Variable name
    ipsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable string
    Variable name
    ipsecRekeyInterval number
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable string
    Variable name
    ipsecReplayWindow number
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable string
    Variable name
    ipv4Address string
    ipv4AddressVariable string
    Variable name
    ipv4SubnetMask string
    ipv4SubnetMaskVariable string
    Variable name
    name string
    The name of the Feature
    perfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable string
    Variable name
    shutdown boolean
    Administrative state
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes
    tcpMssVariable string
    Variable name
    trackerId string
    Enable tracker for this interface
    trackerIdVariable string
    Variable name
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address string
    tunnelDestinationIpv4AddressVariable string
    Variable name
    tunnelDestinationIpv4SubnetMask string
    tunnelDestinationIpv4SubnetMaskVariable string
    Variable name
    tunnelRouteVia string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaVariable string
    Variable name
    tunnelSourceInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceIpv4Address string
    tunnelSourceIpv4AddressVariable string
    Variable name
    tunnelSourceIpv4SubnetMask string
    tunnelSourceIpv4SubnetMaskVariable string
    Variable name
    version number
    The version of the Feature
    application_tunnel_type str
    Enable Application Tunnel Type
    application_tunnel_type_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the Feature
    dpd_interval int
    IKE keepalive interval (seconds)
    dpd_interval_variable str
    Variable name
    dpd_retries int
    IKE keepalive retries
    dpd_retries_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    ike_ciphersuite str
    IKE identity the IKE preshared secret belongs to
    ike_ciphersuite_variable str
    Variable name
    ike_diffie_hellman_group str
    IKE Diffie Hellman Groups
    ike_diffie_hellman_group_variable str
    Variable name
    ike_id_local_end_point str
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ike_id_local_end_point_variable str
    Variable name
    ike_id_remote_end_point str
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ike_id_remote_end_point_variable str
    Variable name
    ike_integrity_protocol str
    IKE integrity protocol
    ike_integrity_protocol_variable str
    Variable name
    ike_preshared_key str
    Use preshared key to authenticate IKE peer
    ike_preshared_key_variable str
    Variable name
    ike_rekey_interval int
    IKE rekey interval \n\n seconds
    ike_rekey_interval_variable str
    Variable name
    ike_version int
    IKE Version \n\n
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name: IPsec when present
    interface_name_variable str
    Variable name
    ip_mtu int
    Interface MTU \n\n, in bytes
    ip_mtu_variable str
    Variable name
    ipsec_ciphersuite str
    IPsec(ESP) encryption and integrity protocol
    ipsec_ciphersuite_variable str
    Variable name
    ipsec_rekey_interval int
    IPsec rekey interval \n\n seconds
    ipsec_rekey_interval_variable str
    Variable name
    ipsec_replay_window int
    Replay window size 32..8192 (must be a power of 2)
    ipsec_replay_window_variable str
    Variable name
    ipv4_address str
    ipv4_address_variable str
    Variable name
    ipv4_subnet_mask str
    ipv4_subnet_mask_variable str
    Variable name
    name str
    The name of the Feature
    perfect_forward_secrecy str
    IPsec perfect forward secrecy settings
    perfect_forward_secrecy_variable str
    Variable name
    shutdown bool
    Administrative state
    shutdown_variable str
    Variable name
    tcp_mss int
    TCP MSS on SYN packets, in bytes
    tcp_mss_variable str
    Variable name
    tracker_id str
    Enable tracker for this interface
    tracker_id_variable str
    Variable name
    transport_wan_vpn_feature_id str
    Transport WAN VPN Feature ID
    tunnel_destination_ipv4_address str
    tunnel_destination_ipv4_address_variable str
    Variable name
    tunnel_destination_ipv4_subnet_mask str
    tunnel_destination_ipv4_subnet_mask_variable str
    Variable name
    tunnel_route_via str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_variable str
    Variable name
    tunnel_source_interface str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_source_interface_variable str
    Variable name
    tunnel_source_ipv4_address str
    tunnel_source_ipv4_address_variable str
    Variable name
    tunnel_source_ipv4_subnet_mask str
    tunnel_source_ipv4_subnet_mask_variable str
    Variable name
    version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Number
    IKE keepalive interval (seconds)
    dpdIntervalVariable String
    Variable name
    dpdRetries Number
    IKE keepalive retries
    dpdRetriesVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    ikeCiphersuite String
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable String
    Variable name
    ikeDiffieHellmanGroup String
    IKE Diffie Hellman Groups
    ikeDiffieHellmanGroupVariable String
    Variable name
    ikeIdLocalEndPoint String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeIdLocalEndPointVariable String
    Variable name
    ikeIdRemoteEndPoint String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeIdRemoteEndPointVariable String
    Variable name
    ikeIntegrityProtocol String
    IKE integrity protocol
    ikeIntegrityProtocolVariable String
    Variable name
    ikePresharedKey String
    Use preshared key to authenticate IKE peer
    ikePresharedKeyVariable String
    Variable name
    ikeRekeyInterval Number
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable String
    Variable name
    ikeVersion Number
    IKE Version \n\n
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: IPsec when present
    interfaceNameVariable String
    Variable name
    ipMtu Number
    Interface MTU \n\n, in bytes
    ipMtuVariable String
    Variable name
    ipsecCiphersuite String
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Number
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Number
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    perfectForwardSecrecy String
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable String
    Variable name
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes
    tcpMssVariable String
    Variable name
    trackerId String
    Enable tracker for this interface
    trackerIdVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelDestinationIpv4SubnetMask String
    tunnelDestinationIpv4SubnetMaskVariable String
    Variable name
    tunnelRouteVia String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSourceInterface String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    tunnelSourceIpv4AddressVariable String
    Variable name
    tunnelSourceIpv4SubnetMask String
    tunnelSourceIpv4SubnetMaskVariable String
    Variable name
    version Number
    The version of the Feature

    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.3 published on Tuesday, Sep 24, 2024 by Pulumi