1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. getOtherTrustsecFeature
Viewing docs for Cisco Catalyst SD-WAN v0.9.2
published on Wednesday, Jul 29, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.9.2
published on Wednesday, Jul 29, 2026 by Pulumi

    This data source can read the Other TrustSec Feature.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getOtherTrustsecFeature({
        id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_other_trustsec_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
    
    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.GetOtherTrustsecFeature(ctx, &sdwan.LookupOtherTrustsecFeatureArgs{
    			Id:               pulumi.StringRef("f6b2c44c-693c-4763-b010-895aa3d236bd"),
    			FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    		}, 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.GetOtherTrustsecFeature.Invoke(new()
        {
            Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        });
    
    });
    
    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.GetOtherTrustsecFeatureArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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.getOtherTrustsecFeature(GetOtherTrustsecFeatureArgs.builder()
                .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: sdwan:getOtherTrustsecFeature
          arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
    
    pulumi {
      required_providers {
        sdwan = {
          source = "pulumi/sdwan"
        }
      }
    }
    
    data "sdwan_getothertrustsecfeature" "example" {
      id                 = "f6b2c44c-693c-4763-b010-895aa3d236bd"
      feature_profile_id = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
    }
    

    Using getOtherTrustsecFeature

    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 getOtherTrustsecFeature(args: GetOtherTrustsecFeatureArgs, opts?: InvokeOptions): Promise<GetOtherTrustsecFeatureResult>
    function getOtherTrustsecFeatureOutput(args: GetOtherTrustsecFeatureOutputArgs, opts?: InvokeOptions): Output<GetOtherTrustsecFeatureResult>
    def get_other_trustsec_feature(feature_profile_id: Optional[str] = None,
                                   id: Optional[str] = None,
                                   name: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetOtherTrustsecFeatureResult
    def get_other_trustsec_feature_output(feature_profile_id: pulumi.Input[Optional[str]] = None,
                                   id: pulumi.Input[Optional[str]] = None,
                                   name: pulumi.Input[Optional[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetOtherTrustsecFeatureResult]
    func LookupOtherTrustsecFeature(ctx *Context, args *LookupOtherTrustsecFeatureArgs, opts ...InvokeOption) (*LookupOtherTrustsecFeatureResult, error)
    func LookupOtherTrustsecFeatureOutput(ctx *Context, args *LookupOtherTrustsecFeatureOutputArgs, opts ...InvokeOption) LookupOtherTrustsecFeatureResultOutput

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

    public static class GetOtherTrustsecFeature 
    {
        public static Task<GetOtherTrustsecFeatureResult> InvokeAsync(GetOtherTrustsecFeatureArgs args, InvokeOptions? opts = null)
        public static Output<GetOtherTrustsecFeatureResult> Invoke(GetOtherTrustsecFeatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOtherTrustsecFeatureResult> getOtherTrustsecFeature(GetOtherTrustsecFeatureArgs args, InvokeOptions options)
    public static Output<GetOtherTrustsecFeatureResult> getOtherTrustsecFeature(GetOtherTrustsecFeatureArgs args, InvokeOptions options)
    
    fn::invoke:
      function: sdwan:index/getOtherTrustsecFeature:getOtherTrustsecFeature
      arguments:
        # arguments dictionary
    data "sdwan_get_other_trustsec_feature" "name" {
        # arguments
    }

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    Name string
    The name of the Feature
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    Name string
    The name of the Feature
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Feature
    name string
    The name of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    name String
    The name of the Feature
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    name string
    The name of the Feature
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    name str
    The name of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    name String
    The name of the Feature

    getOtherTrustsecFeature Result

    The following output properties are available:

    Description string
    The description of the Feature
    DeviceId string
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    DeviceIdVariable string
    Variable name
    DevicePassword string
    Set the password for the device
    DevicePasswordVariable string
    Variable name
    DeviceSgt int
    Configure Local device security group \n\n
    DeviceSgtVariable string
    Variable name
    EnableEnforcement bool
    Enable Role-based Access Control enforcement
    EnableEnforcementVariable string
    Variable name
    EnableSxp bool
    Enable CTS SXP support
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    ListenerHoldTimeMax int
    Configure Maximum allowed hold-time for listener in seconds \n\n
    ListenerHoldTimeMaxVariable string
    Variable name
    ListenerHoldTimeMin int
    Configure Minimum allowed hold-time for listener in seconds \n\n
    ListenerHoldTimeMinVariable string
    Variable name
    Name string
    The name of the Feature
    SpeakerHoldTime int
    Configure Speaker hold-time in seconds \n\n
    SpeakerHoldTimeVariable string
    Variable name
    SxpConnections List<GetOtherTrustsecFeatureSxpConnection>
    Configure SXP Connections
    SxpDefaultPassword string
    Configure SXP default password
    SxpDefaultPasswordVariable string
    Variable name
    SxpKeyChain string
    Configure SXP key-chain
    SxpKeyChainVariable string
    Variable name
    SxpLogBindingChanges bool
    Enables logging for IP-to-SGT binding changes
    SxpLogBindingChangesVariable string
    Variable name
    SxpReconciliationPeriod int
    Configure the SXP reconciliation period in seconds \n\n
    SxpReconciliationPeriodVariable string
    Variable name
    SxpRetryPeriod int
    Configure Retry period for SXP connection in seconds \n\n
    SxpRetryPeriodVariable string
    Variable name
    SxpSourceIp string
    SXP Source IP
    SxpSourceIpVariable string
    Variable name
    Version int
    The version of the Feature
    Description string
    The description of the Feature
    DeviceId string
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    DeviceIdVariable string
    Variable name
    DevicePassword string
    Set the password for the device
    DevicePasswordVariable string
    Variable name
    DeviceSgt int
    Configure Local device security group \n\n
    DeviceSgtVariable string
    Variable name
    EnableEnforcement bool
    Enable Role-based Access Control enforcement
    EnableEnforcementVariable string
    Variable name
    EnableSxp bool
    Enable CTS SXP support
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    ListenerHoldTimeMax int
    Configure Maximum allowed hold-time for listener in seconds \n\n
    ListenerHoldTimeMaxVariable string
    Variable name
    ListenerHoldTimeMin int
    Configure Minimum allowed hold-time for listener in seconds \n\n
    ListenerHoldTimeMinVariable string
    Variable name
    Name string
    The name of the Feature
    SpeakerHoldTime int
    Configure Speaker hold-time in seconds \n\n
    SpeakerHoldTimeVariable string
    Variable name
    SxpConnections []GetOtherTrustsecFeatureSxpConnection
    Configure SXP Connections
    SxpDefaultPassword string
    Configure SXP default password
    SxpDefaultPasswordVariable string
    Variable name
    SxpKeyChain string
    Configure SXP key-chain
    SxpKeyChainVariable string
    Variable name
    SxpLogBindingChanges bool
    Enables logging for IP-to-SGT binding changes
    SxpLogBindingChangesVariable string
    Variable name
    SxpReconciliationPeriod int
    Configure the SXP reconciliation period in seconds \n\n
    SxpReconciliationPeriodVariable string
    Variable name
    SxpRetryPeriod int
    Configure Retry period for SXP connection in seconds \n\n
    SxpRetryPeriodVariable string
    Variable name
    SxpSourceIp string
    SXP Source IP
    SxpSourceIpVariable string
    Variable name
    Version int
    The version of the Feature
    description string
    The description of the Feature
    device_id string
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    device_id_variable string
    Variable name
    device_password string
    Set the password for the device
    device_password_variable string
    Variable name
    device_sgt number
    Configure Local device security group \n\n
    device_sgt_variable string
    Variable name
    enable_enforcement bool
    Enable Role-based Access Control enforcement
    enable_enforcement_variable string
    Variable name
    enable_sxp bool
    Enable CTS SXP support
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Feature
    listener_hold_time_max number
    Configure Maximum allowed hold-time for listener in seconds \n\n
    listener_hold_time_max_variable string
    Variable name
    listener_hold_time_min number
    Configure Minimum allowed hold-time for listener in seconds \n\n
    listener_hold_time_min_variable string
    Variable name
    name string
    The name of the Feature
    speaker_hold_time number
    Configure Speaker hold-time in seconds \n\n
    speaker_hold_time_variable string
    Variable name
    sxp_connections list(object)
    Configure SXP Connections
    sxp_default_password string
    Configure SXP default password
    sxp_default_password_variable string
    Variable name
    sxp_key_chain string
    Configure SXP key-chain
    sxp_key_chain_variable string
    Variable name
    sxp_log_binding_changes bool
    Enables logging for IP-to-SGT binding changes
    sxp_log_binding_changes_variable string
    Variable name
    sxp_reconciliation_period number
    Configure the SXP reconciliation period in seconds \n\n
    sxp_reconciliation_period_variable string
    Variable name
    sxp_retry_period number
    Configure Retry period for SXP connection in seconds \n\n
    sxp_retry_period_variable string
    Variable name
    sxp_source_ip string
    SXP Source IP
    sxp_source_ip_variable string
    Variable name
    version number
    The version of the Feature
    description String
    The description of the Feature
    deviceId String
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    deviceIdVariable String
    Variable name
    devicePassword String
    Set the password for the device
    devicePasswordVariable String
    Variable name
    deviceSgt Integer
    Configure Local device security group \n\n
    deviceSgtVariable String
    Variable name
    enableEnforcement Boolean
    Enable Role-based Access Control enforcement
    enableEnforcementVariable String
    Variable name
    enableSxp Boolean
    Enable CTS SXP support
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    listenerHoldTimeMax Integer
    Configure Maximum allowed hold-time for listener in seconds \n\n
    listenerHoldTimeMaxVariable String
    Variable name
    listenerHoldTimeMin Integer
    Configure Minimum allowed hold-time for listener in seconds \n\n
    listenerHoldTimeMinVariable String
    Variable name
    name String
    The name of the Feature
    speakerHoldTime Integer
    Configure Speaker hold-time in seconds \n\n
    speakerHoldTimeVariable String
    Variable name
    sxpConnections List<GetOtherTrustsecFeatureSxpConnection>
    Configure SXP Connections
    sxpDefaultPassword String
    Configure SXP default password
    sxpDefaultPasswordVariable String
    Variable name
    sxpKeyChain String
    Configure SXP key-chain
    sxpKeyChainVariable String
    Variable name
    sxpLogBindingChanges Boolean
    Enables logging for IP-to-SGT binding changes
    sxpLogBindingChangesVariable String
    Variable name
    sxpReconciliationPeriod Integer
    Configure the SXP reconciliation period in seconds \n\n
    sxpReconciliationPeriodVariable String
    Variable name
    sxpRetryPeriod Integer
    Configure Retry period for SXP connection in seconds \n\n
    sxpRetryPeriodVariable String
    Variable name
    sxpSourceIp String
    SXP Source IP
    sxpSourceIpVariable String
    Variable name
    version Integer
    The version of the Feature
    description string
    The description of the Feature
    deviceId string
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    deviceIdVariable string
    Variable name
    devicePassword string
    Set the password for the device
    devicePasswordVariable string
    Variable name
    deviceSgt number
    Configure Local device security group \n\n
    deviceSgtVariable string
    Variable name
    enableEnforcement boolean
    Enable Role-based Access Control enforcement
    enableEnforcementVariable string
    Variable name
    enableSxp boolean
    Enable CTS SXP support
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    listenerHoldTimeMax number
    Configure Maximum allowed hold-time for listener in seconds \n\n
    listenerHoldTimeMaxVariable string
    Variable name
    listenerHoldTimeMin number
    Configure Minimum allowed hold-time for listener in seconds \n\n
    listenerHoldTimeMinVariable string
    Variable name
    name string
    The name of the Feature
    speakerHoldTime number
    Configure Speaker hold-time in seconds \n\n
    speakerHoldTimeVariable string
    Variable name
    sxpConnections GetOtherTrustsecFeatureSxpConnection[]
    Configure SXP Connections
    sxpDefaultPassword string
    Configure SXP default password
    sxpDefaultPasswordVariable string
    Variable name
    sxpKeyChain string
    Configure SXP key-chain
    sxpKeyChainVariable string
    Variable name
    sxpLogBindingChanges boolean
    Enables logging for IP-to-SGT binding changes
    sxpLogBindingChangesVariable string
    Variable name
    sxpReconciliationPeriod number
    Configure the SXP reconciliation period in seconds \n\n
    sxpReconciliationPeriodVariable string
    Variable name
    sxpRetryPeriod number
    Configure Retry period for SXP connection in seconds \n\n
    sxpRetryPeriodVariable string
    Variable name
    sxpSourceIp string
    SXP Source IP
    sxpSourceIpVariable string
    Variable name
    version number
    The version of the Feature
    description str
    The description of the Feature
    device_id str
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    device_id_variable str
    Variable name
    device_password str
    Set the password for the device
    device_password_variable str
    Variable name
    device_sgt int
    Configure Local device security group \n\n
    device_sgt_variable str
    Variable name
    enable_enforcement bool
    Enable Role-based Access Control enforcement
    enable_enforcement_variable str
    Variable name
    enable_sxp bool
    Enable CTS SXP support
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    listener_hold_time_max int
    Configure Maximum allowed hold-time for listener in seconds \n\n
    listener_hold_time_max_variable str
    Variable name
    listener_hold_time_min int
    Configure Minimum allowed hold-time for listener in seconds \n\n
    listener_hold_time_min_variable str
    Variable name
    name str
    The name of the Feature
    speaker_hold_time int
    Configure Speaker hold-time in seconds \n\n
    speaker_hold_time_variable str
    Variable name
    sxp_connections Sequence[GetOtherTrustsecFeatureSxpConnection]
    Configure SXP Connections
    sxp_default_password str
    Configure SXP default password
    sxp_default_password_variable str
    Variable name
    sxp_key_chain str
    Configure SXP key-chain
    sxp_key_chain_variable str
    Variable name
    sxp_log_binding_changes bool
    Enables logging for IP-to-SGT binding changes
    sxp_log_binding_changes_variable str
    Variable name
    sxp_reconciliation_period int
    Configure the SXP reconciliation period in seconds \n\n
    sxp_reconciliation_period_variable str
    Variable name
    sxp_retry_period int
    Configure Retry period for SXP connection in seconds \n\n
    sxp_retry_period_variable str
    Variable name
    sxp_source_ip str
    SXP Source IP
    sxp_source_ip_variable str
    Variable name
    version int
    The version of the Feature
    description String
    The description of the Feature
    deviceId String
    Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char)
    deviceIdVariable String
    Variable name
    devicePassword String
    Set the password for the device
    devicePasswordVariable String
    Variable name
    deviceSgt Number
    Configure Local device security group \n\n
    deviceSgtVariable String
    Variable name
    enableEnforcement Boolean
    Enable Role-based Access Control enforcement
    enableEnforcementVariable String
    Variable name
    enableSxp Boolean
    Enable CTS SXP support
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    listenerHoldTimeMax Number
    Configure Maximum allowed hold-time for listener in seconds \n\n
    listenerHoldTimeMaxVariable String
    Variable name
    listenerHoldTimeMin Number
    Configure Minimum allowed hold-time for listener in seconds \n\n
    listenerHoldTimeMinVariable String
    Variable name
    name String
    The name of the Feature
    speakerHoldTime Number
    Configure Speaker hold-time in seconds \n\n
    speakerHoldTimeVariable String
    Variable name
    sxpConnections List<Property Map>
    Configure SXP Connections
    sxpDefaultPassword String
    Configure SXP default password
    sxpDefaultPasswordVariable String
    Variable name
    sxpKeyChain String
    Configure SXP key-chain
    sxpKeyChainVariable String
    Variable name
    sxpLogBindingChanges Boolean
    Enables logging for IP-to-SGT binding changes
    sxpLogBindingChangesVariable String
    Variable name
    sxpReconciliationPeriod Number
    Configure the SXP reconciliation period in seconds \n\n
    sxpReconciliationPeriodVariable String
    Variable name
    sxpRetryPeriod Number
    Configure Retry period for SXP connection in seconds \n\n
    sxpRetryPeriodVariable String
    Variable name
    sxpSourceIp String
    SXP Source IP
    sxpSourceIpVariable String
    Variable name
    version Number
    The version of the Feature

    Supporting Types

    GetOtherTrustsecFeatureSxpConnection

    MaxHoldTime int
    Configure Connection Maximum hold time \n\n
    MaxHoldTimeVariable string
    Variable name
    MinHoldTime int
    Configure Connection Minimum hold time \n\n
    MinHoldTimeVariable string
    Variable name
    Mode string
    Define Mode of connection
    ModeType string
    Define Role of a device \n\n
    PeerIp string
    Configure SXP Peer IP address (IPv4)
    PeerIpVariable string
    Variable name
    PresharedKey string
    Define Preshared Key type
    SourceIp string
    Configure SXP Source IP address (IPv4)
    SourceIpVariable string
    Variable name
    VpnId int
    Configure Connection VPN (VRF) ID
    VpnIdVariable string
    Variable name
    MaxHoldTime int
    Configure Connection Maximum hold time \n\n
    MaxHoldTimeVariable string
    Variable name
    MinHoldTime int
    Configure Connection Minimum hold time \n\n
    MinHoldTimeVariable string
    Variable name
    Mode string
    Define Mode of connection
    ModeType string
    Define Role of a device \n\n
    PeerIp string
    Configure SXP Peer IP address (IPv4)
    PeerIpVariable string
    Variable name
    PresharedKey string
    Define Preshared Key type
    SourceIp string
    Configure SXP Source IP address (IPv4)
    SourceIpVariable string
    Variable name
    VpnId int
    Configure Connection VPN (VRF) ID
    VpnIdVariable string
    Variable name
    max_hold_time number
    Configure Connection Maximum hold time \n\n
    max_hold_time_variable string
    Variable name
    min_hold_time number
    Configure Connection Minimum hold time \n\n
    min_hold_time_variable string
    Variable name
    mode string
    Define Mode of connection
    mode_type string
    Define Role of a device \n\n
    peer_ip string
    Configure SXP Peer IP address (IPv4)
    peer_ip_variable string
    Variable name
    preshared_key string
    Define Preshared Key type
    source_ip string
    Configure SXP Source IP address (IPv4)
    source_ip_variable string
    Variable name
    vpn_id number
    Configure Connection VPN (VRF) ID
    vpn_id_variable string
    Variable name
    maxHoldTime Integer
    Configure Connection Maximum hold time \n\n
    maxHoldTimeVariable String
    Variable name
    minHoldTime Integer
    Configure Connection Minimum hold time \n\n
    minHoldTimeVariable String
    Variable name
    mode String
    Define Mode of connection
    modeType String
    Define Role of a device \n\n
    peerIp String
    Configure SXP Peer IP address (IPv4)
    peerIpVariable String
    Variable name
    presharedKey String
    Define Preshared Key type
    sourceIp String
    Configure SXP Source IP address (IPv4)
    sourceIpVariable String
    Variable name
    vpnId Integer
    Configure Connection VPN (VRF) ID
    vpnIdVariable String
    Variable name
    maxHoldTime number
    Configure Connection Maximum hold time \n\n
    maxHoldTimeVariable string
    Variable name
    minHoldTime number
    Configure Connection Minimum hold time \n\n
    minHoldTimeVariable string
    Variable name
    mode string
    Define Mode of connection
    modeType string
    Define Role of a device \n\n
    peerIp string
    Configure SXP Peer IP address (IPv4)
    peerIpVariable string
    Variable name
    presharedKey string
    Define Preshared Key type
    sourceIp string
    Configure SXP Source IP address (IPv4)
    sourceIpVariable string
    Variable name
    vpnId number
    Configure Connection VPN (VRF) ID
    vpnIdVariable string
    Variable name
    max_hold_time int
    Configure Connection Maximum hold time \n\n
    max_hold_time_variable str
    Variable name
    min_hold_time int
    Configure Connection Minimum hold time \n\n
    min_hold_time_variable str
    Variable name
    mode str
    Define Mode of connection
    mode_type str
    Define Role of a device \n\n
    peer_ip str
    Configure SXP Peer IP address (IPv4)
    peer_ip_variable str
    Variable name
    preshared_key str
    Define Preshared Key type
    source_ip str
    Configure SXP Source IP address (IPv4)
    source_ip_variable str
    Variable name
    vpn_id int
    Configure Connection VPN (VRF) ID
    vpn_id_variable str
    Variable name
    maxHoldTime Number
    Configure Connection Maximum hold time \n\n
    maxHoldTimeVariable String
    Variable name
    minHoldTime Number
    Configure Connection Minimum hold time \n\n
    minHoldTimeVariable String
    Variable name
    mode String
    Define Mode of connection
    modeType String
    Define Role of a device \n\n
    peerIp String
    Configure SXP Peer IP address (IPv4)
    peerIpVariable String
    Variable name
    presharedKey String
    Define Preshared Key type
    sourceIp String
    Configure SXP Source IP address (IPv4)
    sourceIpVariable String
    Variable name
    vpnId Number
    Configure Connection VPN (VRF) ID
    vpnIdVariable String
    Variable name

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.9.2
    published on Wednesday, Jul 29, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial