published on Wednesday, Jul 29, 2026 by Pulumi
published on Wednesday, Jul 29, 2026 by Pulumi
This resource can manage a Other TrustSec Feature.
- Minimum SD-WAN Manager version:
20.18.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.OtherTrustsecFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
deviceId: "trustsecDevice",
devicePassword: "Cisco123",
deviceSgt: 100,
enableEnforcement: true,
enableSxp: true,
listenerHoldTimeMin: 90,
listenerHoldTimeMax: 180,
speakerHoldTime: 120,
sxpKeyChain: "keychain1",
sxpLogBindingChanges: true,
sxpReconciliationPeriod: 120,
sxpRetryPeriod: 120,
sxpSourceIp: "10.0.0.1",
sxpConnections: [{
peerIp: "10.0.0.2",
sourceIp: "10.0.0.1",
presharedKey: "none",
mode: "peer",
modeType: "speaker",
vpnId: 1,
minHoldTime: 90,
maxHoldTime: 120,
}],
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.OtherTrustsecFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
device_id="trustsecDevice",
device_password="Cisco123",
device_sgt=100,
enable_enforcement=True,
enable_sxp=True,
listener_hold_time_min=90,
listener_hold_time_max=180,
speaker_hold_time=120,
sxp_key_chain="keychain1",
sxp_log_binding_changes=True,
sxp_reconciliation_period=120,
sxp_retry_period=120,
sxp_source_ip="10.0.0.1",
sxp_connections=[{
"peer_ip": "10.0.0.2",
"source_ip": "10.0.0.1",
"preshared_key": "none",
"mode": "peer",
"mode_type": "speaker",
"vpn_id": 1,
"min_hold_time": 90,
"max_hold_time": 120,
}])
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.NewOtherTrustsecFeature(ctx, "example", &sdwan.OtherTrustsecFeatureArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
DeviceId: pulumi.String("trustsecDevice"),
DevicePassword: pulumi.String("Cisco123"),
DeviceSgt: pulumi.Int(100),
EnableEnforcement: pulumi.Bool(true),
EnableSxp: pulumi.Bool(true),
ListenerHoldTimeMin: pulumi.Int(90),
ListenerHoldTimeMax: pulumi.Int(180),
SpeakerHoldTime: pulumi.Int(120),
SxpKeyChain: pulumi.String("keychain1"),
SxpLogBindingChanges: pulumi.Bool(true),
SxpReconciliationPeriod: pulumi.Int(120),
SxpRetryPeriod: pulumi.Int(120),
SxpSourceIp: pulumi.String("10.0.0.1"),
SxpConnections: sdwan.OtherTrustsecFeatureSxpConnectionArray{
&sdwan.OtherTrustsecFeatureSxpConnectionArgs{
PeerIp: pulumi.String("10.0.0.2"),
SourceIp: pulumi.String("10.0.0.1"),
PresharedKey: pulumi.String("none"),
Mode: pulumi.String("peer"),
ModeType: pulumi.String("speaker"),
VpnId: pulumi.Int(1),
MinHoldTime: pulumi.Int(90),
MaxHoldTime: pulumi.Int(120),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.OtherTrustsecFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
DeviceId = "trustsecDevice",
DevicePassword = "Cisco123",
DeviceSgt = 100,
EnableEnforcement = true,
EnableSxp = true,
ListenerHoldTimeMin = 90,
ListenerHoldTimeMax = 180,
SpeakerHoldTime = 120,
SxpKeyChain = "keychain1",
SxpLogBindingChanges = true,
SxpReconciliationPeriod = 120,
SxpRetryPeriod = 120,
SxpSourceIp = "10.0.0.1",
SxpConnections = new[]
{
new Sdwan.Inputs.OtherTrustsecFeatureSxpConnectionArgs
{
PeerIp = "10.0.0.2",
SourceIp = "10.0.0.1",
PresharedKey = "none",
Mode = "peer",
ModeType = "speaker",
VpnId = 1,
MinHoldTime = 90,
MaxHoldTime = 120,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.OtherTrustsecFeature;
import com.pulumi.sdwan.OtherTrustsecFeatureArgs;
import com.pulumi.sdwan.inputs.OtherTrustsecFeatureSxpConnectionArgs;
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) {
var example = new OtherTrustsecFeature("example", OtherTrustsecFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.deviceId("trustsecDevice")
.devicePassword("Cisco123")
.deviceSgt(100)
.enableEnforcement(true)
.enableSxp(true)
.listenerHoldTimeMin(90)
.listenerHoldTimeMax(180)
.speakerHoldTime(120)
.sxpKeyChain("keychain1")
.sxpLogBindingChanges(true)
.sxpReconciliationPeriod(120)
.sxpRetryPeriod(120)
.sxpSourceIp("10.0.0.1")
.sxpConnections(OtherTrustsecFeatureSxpConnectionArgs.builder()
.peerIp("10.0.0.2")
.sourceIp("10.0.0.1")
.presharedKey("none")
.mode("peer")
.modeType("speaker")
.vpnId(1)
.minHoldTime(90)
.maxHoldTime(120)
.build())
.build());
}
}
resources:
example:
type: sdwan:OtherTrustsecFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
deviceId: trustsecDevice
devicePassword: Cisco123
deviceSgt: 100
enableEnforcement: true
enableSxp: true
listenerHoldTimeMin: 90
listenerHoldTimeMax: 180
speakerHoldTime: 120
sxpKeyChain: keychain1
sxpLogBindingChanges: true
sxpReconciliationPeriod: 120
sxpRetryPeriod: 120
sxpSourceIp: 10.0.0.1
sxpConnections:
- peerIp: 10.0.0.2
sourceIp: 10.0.0.1
presharedKey: none
mode: peer
modeType: speaker
vpnId: 1
minHoldTime: 90
maxHoldTime: 120
pulumi {
required_providers {
sdwan = {
source = "pulumi/sdwan"
}
}
}
resource "sdwan_othertrustsecfeature" "example" {
name = "Example"
description = "My Example"
feature_profile_id = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
device_id = "trustsecDevice"
device_password = "Cisco123"
device_sgt = 100
enable_enforcement = true
enable_sxp = true
listener_hold_time_min = 90
listener_hold_time_max = 180
speaker_hold_time = 120
sxp_key_chain = "keychain1"
sxp_log_binding_changes = true
sxp_reconciliation_period = 120
sxp_retry_period = 120
sxp_source_ip = "10.0.0.1"
sxp_connections {
peer_ip = "10.0.0.2"
source_ip = "10.0.0.1"
preshared_key = "none"
mode = "peer"
mode_type = "speaker"
vpn_id = 1
min_hold_time = 90
max_hold_time = 120
}
}
Create OtherTrustsecFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OtherTrustsecFeature(name: string, args: OtherTrustsecFeatureArgs, opts?: CustomResourceOptions);@overload
def OtherTrustsecFeature(resource_name: str,
args: OtherTrustsecFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OtherTrustsecFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
listener_hold_time_min_variable: Optional[str] = None,
sxp_key_chain: Optional[str] = None,
device_password: Optional[str] = None,
device_password_variable: Optional[str] = None,
device_sgt: Optional[int] = None,
device_sgt_variable: Optional[str] = None,
enable_enforcement: Optional[bool] = None,
enable_enforcement_variable: Optional[str] = None,
enable_sxp: Optional[bool] = None,
device_id: Optional[str] = None,
listener_hold_time_max: Optional[int] = None,
listener_hold_time_max_variable: Optional[str] = None,
listener_hold_time_min: Optional[int] = None,
description: Optional[str] = None,
device_id_variable: Optional[str] = None,
name: Optional[str] = None,
sxp_log_binding_changes: Optional[bool] = None,
sxp_connections: Optional[Sequence[OtherTrustsecFeatureSxpConnectionArgs]] = None,
sxp_default_password: Optional[str] = None,
sxp_default_password_variable: Optional[str] = None,
speaker_hold_time: Optional[int] = None,
sxp_key_chain_variable: Optional[str] = None,
speaker_hold_time_variable: Optional[str] = None,
sxp_log_binding_changes_variable: Optional[str] = None,
sxp_reconciliation_period: Optional[int] = None,
sxp_reconciliation_period_variable: Optional[str] = None,
sxp_retry_period: Optional[int] = None,
sxp_retry_period_variable: Optional[str] = None,
sxp_source_ip: Optional[str] = None,
sxp_source_ip_variable: Optional[str] = None)func NewOtherTrustsecFeature(ctx *Context, name string, args OtherTrustsecFeatureArgs, opts ...ResourceOption) (*OtherTrustsecFeature, error)public OtherTrustsecFeature(string name, OtherTrustsecFeatureArgs args, CustomResourceOptions? opts = null)
public OtherTrustsecFeature(String name, OtherTrustsecFeatureArgs args)
public OtherTrustsecFeature(String name, OtherTrustsecFeatureArgs args, CustomResourceOptions options)
type: sdwan:OtherTrustsecFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "sdwan_other_trustsec_feature" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OtherTrustsecFeatureArgs
- 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 OtherTrustsecFeatureArgs
- 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 OtherTrustsecFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OtherTrustsecFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OtherTrustsecFeatureArgs
- 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 otherTrustsecFeatureResource = new Sdwan.OtherTrustsecFeature("otherTrustsecFeatureResource", new()
{
FeatureProfileId = "string",
ListenerHoldTimeMinVariable = "string",
SxpKeyChain = "string",
DevicePassword = "string",
DevicePasswordVariable = "string",
DeviceSgt = 0,
DeviceSgtVariable = "string",
EnableEnforcement = false,
EnableEnforcementVariable = "string",
EnableSxp = false,
DeviceId = "string",
ListenerHoldTimeMax = 0,
ListenerHoldTimeMaxVariable = "string",
ListenerHoldTimeMin = 0,
Description = "string",
DeviceIdVariable = "string",
Name = "string",
SxpLogBindingChanges = false,
SxpConnections = new[]
{
new Sdwan.Inputs.OtherTrustsecFeatureSxpConnectionArgs
{
MaxHoldTime = 0,
MaxHoldTimeVariable = "string",
MinHoldTime = 0,
MinHoldTimeVariable = "string",
Mode = "string",
ModeType = "string",
PeerIp = "string",
PeerIpVariable = "string",
PresharedKey = "string",
SourceIp = "string",
SourceIpVariable = "string",
VpnId = 0,
VpnIdVariable = "string",
},
},
SxpDefaultPassword = "string",
SxpDefaultPasswordVariable = "string",
SpeakerHoldTime = 0,
SxpKeyChainVariable = "string",
SpeakerHoldTimeVariable = "string",
SxpLogBindingChangesVariable = "string",
SxpReconciliationPeriod = 0,
SxpReconciliationPeriodVariable = "string",
SxpRetryPeriod = 0,
SxpRetryPeriodVariable = "string",
SxpSourceIp = "string",
SxpSourceIpVariable = "string",
});
example, err := sdwan.NewOtherTrustsecFeature(ctx, "otherTrustsecFeatureResource", &sdwan.OtherTrustsecFeatureArgs{
FeatureProfileId: pulumi.String("string"),
ListenerHoldTimeMinVariable: pulumi.String("string"),
SxpKeyChain: pulumi.String("string"),
DevicePassword: pulumi.String("string"),
DevicePasswordVariable: pulumi.String("string"),
DeviceSgt: pulumi.Int(0),
DeviceSgtVariable: pulumi.String("string"),
EnableEnforcement: pulumi.Bool(false),
EnableEnforcementVariable: pulumi.String("string"),
EnableSxp: pulumi.Bool(false),
DeviceId: pulumi.String("string"),
ListenerHoldTimeMax: pulumi.Int(0),
ListenerHoldTimeMaxVariable: pulumi.String("string"),
ListenerHoldTimeMin: pulumi.Int(0),
Description: pulumi.String("string"),
DeviceIdVariable: pulumi.String("string"),
Name: pulumi.String("string"),
SxpLogBindingChanges: pulumi.Bool(false),
SxpConnections: sdwan.OtherTrustsecFeatureSxpConnectionArray{
&sdwan.OtherTrustsecFeatureSxpConnectionArgs{
MaxHoldTime: pulumi.Int(0),
MaxHoldTimeVariable: pulumi.String("string"),
MinHoldTime: pulumi.Int(0),
MinHoldTimeVariable: pulumi.String("string"),
Mode: pulumi.String("string"),
ModeType: pulumi.String("string"),
PeerIp: pulumi.String("string"),
PeerIpVariable: pulumi.String("string"),
PresharedKey: pulumi.String("string"),
SourceIp: pulumi.String("string"),
SourceIpVariable: pulumi.String("string"),
VpnId: pulumi.Int(0),
VpnIdVariable: pulumi.String("string"),
},
},
SxpDefaultPassword: pulumi.String("string"),
SxpDefaultPasswordVariable: pulumi.String("string"),
SpeakerHoldTime: pulumi.Int(0),
SxpKeyChainVariable: pulumi.String("string"),
SpeakerHoldTimeVariable: pulumi.String("string"),
SxpLogBindingChangesVariable: pulumi.String("string"),
SxpReconciliationPeriod: pulumi.Int(0),
SxpReconciliationPeriodVariable: pulumi.String("string"),
SxpRetryPeriod: pulumi.Int(0),
SxpRetryPeriodVariable: pulumi.String("string"),
SxpSourceIp: pulumi.String("string"),
SxpSourceIpVariable: pulumi.String("string"),
})
resource "sdwan_other_trustsec_feature" "otherTrustsecFeatureResource" {
lifecycle {
create_before_destroy = true
}
feature_profile_id = "string"
listener_hold_time_min_variable = "string"
sxp_key_chain = "string"
device_password = "string"
device_password_variable = "string"
device_sgt = 0
device_sgt_variable = "string"
enable_enforcement = false
enable_enforcement_variable = "string"
enable_sxp = false
device_id = "string"
listener_hold_time_max = 0
listener_hold_time_max_variable = "string"
listener_hold_time_min = 0
description = "string"
device_id_variable = "string"
name = "string"
sxp_log_binding_changes = false
sxp_connections {
max_hold_time = 0
max_hold_time_variable = "string"
min_hold_time = 0
min_hold_time_variable = "string"
mode = "string"
mode_type = "string"
peer_ip = "string"
peer_ip_variable = "string"
preshared_key = "string"
source_ip = "string"
source_ip_variable = "string"
vpn_id = 0
vpn_id_variable = "string"
}
sxp_default_password = "string"
sxp_default_password_variable = "string"
speaker_hold_time = 0
sxp_key_chain_variable = "string"
speaker_hold_time_variable = "string"
sxp_log_binding_changes_variable = "string"
sxp_reconciliation_period = 0
sxp_reconciliation_period_variable = "string"
sxp_retry_period = 0
sxp_retry_period_variable = "string"
sxp_source_ip = "string"
sxp_source_ip_variable = "string"
}
var otherTrustsecFeatureResource = new OtherTrustsecFeature("otherTrustsecFeatureResource", OtherTrustsecFeatureArgs.builder()
.featureProfileId("string")
.listenerHoldTimeMinVariable("string")
.sxpKeyChain("string")
.devicePassword("string")
.devicePasswordVariable("string")
.deviceSgt(0)
.deviceSgtVariable("string")
.enableEnforcement(false)
.enableEnforcementVariable("string")
.enableSxp(false)
.deviceId("string")
.listenerHoldTimeMax(0)
.listenerHoldTimeMaxVariable("string")
.listenerHoldTimeMin(0)
.description("string")
.deviceIdVariable("string")
.name("string")
.sxpLogBindingChanges(false)
.sxpConnections(OtherTrustsecFeatureSxpConnectionArgs.builder()
.maxHoldTime(0)
.maxHoldTimeVariable("string")
.minHoldTime(0)
.minHoldTimeVariable("string")
.mode("string")
.modeType("string")
.peerIp("string")
.peerIpVariable("string")
.presharedKey("string")
.sourceIp("string")
.sourceIpVariable("string")
.vpnId(0)
.vpnIdVariable("string")
.build())
.sxpDefaultPassword("string")
.sxpDefaultPasswordVariable("string")
.speakerHoldTime(0)
.sxpKeyChainVariable("string")
.speakerHoldTimeVariable("string")
.sxpLogBindingChangesVariable("string")
.sxpReconciliationPeriod(0)
.sxpReconciliationPeriodVariable("string")
.sxpRetryPeriod(0)
.sxpRetryPeriodVariable("string")
.sxpSourceIp("string")
.sxpSourceIpVariable("string")
.build());
other_trustsec_feature_resource = sdwan.OtherTrustsecFeature("otherTrustsecFeatureResource",
feature_profile_id="string",
listener_hold_time_min_variable="string",
sxp_key_chain="string",
device_password="string",
device_password_variable="string",
device_sgt=0,
device_sgt_variable="string",
enable_enforcement=False,
enable_enforcement_variable="string",
enable_sxp=False,
device_id="string",
listener_hold_time_max=0,
listener_hold_time_max_variable="string",
listener_hold_time_min=0,
description="string",
device_id_variable="string",
name="string",
sxp_log_binding_changes=False,
sxp_connections=[{
"max_hold_time": 0,
"max_hold_time_variable": "string",
"min_hold_time": 0,
"min_hold_time_variable": "string",
"mode": "string",
"mode_type": "string",
"peer_ip": "string",
"peer_ip_variable": "string",
"preshared_key": "string",
"source_ip": "string",
"source_ip_variable": "string",
"vpn_id": 0,
"vpn_id_variable": "string",
}],
sxp_default_password="string",
sxp_default_password_variable="string",
speaker_hold_time=0,
sxp_key_chain_variable="string",
speaker_hold_time_variable="string",
sxp_log_binding_changes_variable="string",
sxp_reconciliation_period=0,
sxp_reconciliation_period_variable="string",
sxp_retry_period=0,
sxp_retry_period_variable="string",
sxp_source_ip="string",
sxp_source_ip_variable="string")
const otherTrustsecFeatureResource = new sdwan.OtherTrustsecFeature("otherTrustsecFeatureResource", {
featureProfileId: "string",
listenerHoldTimeMinVariable: "string",
sxpKeyChain: "string",
devicePassword: "string",
devicePasswordVariable: "string",
deviceSgt: 0,
deviceSgtVariable: "string",
enableEnforcement: false,
enableEnforcementVariable: "string",
enableSxp: false,
deviceId: "string",
listenerHoldTimeMax: 0,
listenerHoldTimeMaxVariable: "string",
listenerHoldTimeMin: 0,
description: "string",
deviceIdVariable: "string",
name: "string",
sxpLogBindingChanges: false,
sxpConnections: [{
maxHoldTime: 0,
maxHoldTimeVariable: "string",
minHoldTime: 0,
minHoldTimeVariable: "string",
mode: "string",
modeType: "string",
peerIp: "string",
peerIpVariable: "string",
presharedKey: "string",
sourceIp: "string",
sourceIpVariable: "string",
vpnId: 0,
vpnIdVariable: "string",
}],
sxpDefaultPassword: "string",
sxpDefaultPasswordVariable: "string",
speakerHoldTime: 0,
sxpKeyChainVariable: "string",
speakerHoldTimeVariable: "string",
sxpLogBindingChangesVariable: "string",
sxpReconciliationPeriod: 0,
sxpReconciliationPeriodVariable: "string",
sxpRetryPeriod: 0,
sxpRetryPeriodVariable: "string",
sxpSourceIp: "string",
sxpSourceIpVariable: "string",
});
type: sdwan:OtherTrustsecFeature
properties:
description: string
deviceId: string
deviceIdVariable: string
devicePassword: string
devicePasswordVariable: string
deviceSgt: 0
deviceSgtVariable: string
enableEnforcement: false
enableEnforcementVariable: string
enableSxp: false
featureProfileId: string
listenerHoldTimeMax: 0
listenerHoldTimeMaxVariable: string
listenerHoldTimeMin: 0
listenerHoldTimeMinVariable: string
name: string
speakerHoldTime: 0
speakerHoldTimeVariable: string
sxpConnections:
- maxHoldTime: 0
maxHoldTimeVariable: string
minHoldTime: 0
minHoldTimeVariable: string
mode: string
modeType: string
peerIp: string
peerIpVariable: string
presharedKey: string
sourceIp: string
sourceIpVariable: string
vpnId: 0
vpnIdVariable: string
sxpDefaultPassword: string
sxpDefaultPasswordVariable: string
sxpKeyChain: string
sxpKeyChainVariable: string
sxpLogBindingChanges: false
sxpLogBindingChangesVariable: string
sxpReconciliationPeriod: 0
sxpReconciliationPeriodVariable: string
sxpRetryPeriod: 0
sxpRetryPeriodVariable: string
sxpSourceIp: string
sxpSourceIpVariable: string
OtherTrustsecFeature Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OtherTrustsecFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- 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 stringVariable - Variable name
- Device
Password string - Set the password for the device
- Device
Password stringVariable - Variable name
- Device
Sgt int - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- Device
Sgt stringVariable - Variable name
- Enable
Enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- Enable
Enforcement stringVariable - Variable name
- Enable
Sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- Listener
Hold intTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- Listener
Hold stringTime Max Variable - Variable name
- Listener
Hold intTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- Listener
Hold stringTime Min Variable - Variable name
- Name string
- The name of the Feature
- Speaker
Hold intTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- Speaker
Hold stringTime Variable - Variable name
- Sxp
Connections List<OtherTrustsec Feature Sxp Connection> - Configure SXP Connections
- Sxp
Default stringPassword - Configure SXP default password
- Sxp
Default stringPassword Variable - Variable name
- Sxp
Key stringChain - Configure SXP key-chain
- Sxp
Key stringChain Variable - Variable name
- Sxp
Log boolBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- Sxp
Log stringBinding Changes Variable - Variable name
- Sxp
Reconciliation intPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Reconciliation stringPeriod Variable - Variable name
- Sxp
Retry intPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Retry stringPeriod Variable - Variable name
- Sxp
Source stringIp - SXP Source IP
- Sxp
Source stringIp Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- 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 stringVariable - Variable name
- Device
Password string - Set the password for the device
- Device
Password stringVariable - Variable name
- Device
Sgt int - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- Device
Sgt stringVariable - Variable name
- Enable
Enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- Enable
Enforcement stringVariable - Variable name
- Enable
Sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- Listener
Hold intTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- Listener
Hold stringTime Max Variable - Variable name
- Listener
Hold intTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- Listener
Hold stringTime Min Variable - Variable name
- Name string
- The name of the Feature
- Speaker
Hold intTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- Speaker
Hold stringTime Variable - Variable name
- Sxp
Connections []OtherTrustsec Feature Sxp Connection Args - Configure SXP Connections
- Sxp
Default stringPassword - Configure SXP default password
- Sxp
Default stringPassword Variable - Variable name
- Sxp
Key stringChain - Configure SXP key-chain
- Sxp
Key stringChain Variable - Variable name
- Sxp
Log boolBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- Sxp
Log stringBinding Changes Variable - Variable name
- Sxp
Reconciliation intPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Reconciliation stringPeriod Variable - Variable name
- Sxp
Retry intPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Retry stringPeriod Variable - Variable name
- Sxp
Source stringIp - SXP Source IP
- Sxp
Source stringIp Variable - Variable name
- feature_
profile_ stringid - Feature Profile ID
- 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_ stringvariable - Variable name
- device_
password string - Set the password for the device
- device_
password_ stringvariable - Variable name
- device_
sgt number - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device_
sgt_ stringvariable - Variable name
- enable_
enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable_
enforcement_ stringvariable - Variable name
- enable_
sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- listener_
hold_ numbertime_ max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener_
hold_ stringtime_ max_ variable - Variable name
- listener_
hold_ numbertime_ min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener_
hold_ stringtime_ min_ variable - Variable name
- name string
- The name of the Feature
- speaker_
hold_ numbertime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker_
hold_ stringtime_ variable - Variable name
- sxp_
connections list(object) - Configure SXP Connections
- sxp_
default_ stringpassword - Configure SXP default password
- sxp_
default_ stringpassword_ variable - Variable name
- sxp_
key_ stringchain - Configure SXP key-chain
- sxp_
key_ stringchain_ variable - Variable name
- sxp_
log_ boolbinding_ changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp_
log_ stringbinding_ changes_ variable - Variable name
- sxp_
reconciliation_ numberperiod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
reconciliation_ stringperiod_ variable - Variable name
- sxp_
retry_ numberperiod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
retry_ stringperiod_ variable - Variable name
- sxp_
source_ stringip - SXP Source IP
- sxp_
source_ stringip_ variable - Variable name
- feature
Profile StringId - Feature Profile ID
- 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 StringVariable - Variable name
- device
Password String - Set the password for the device
- device
Password StringVariable - Variable name
- device
Sgt Integer - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device
Sgt StringVariable - Variable name
- enable
Enforcement Boolean - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable
Enforcement StringVariable - Variable name
- enable
Sxp Boolean - Enable CTS SXP support
- Default value:
false
- Default value:
- listener
Hold IntegerTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener
Hold StringTime Max Variable - Variable name
- listener
Hold IntegerTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener
Hold StringTime Min Variable - Variable name
- name String
- The name of the Feature
- speaker
Hold IntegerTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker
Hold StringTime Variable - Variable name
- sxp
Connections List<OtherTrustsec Feature Sxp Connection> - Configure SXP Connections
- sxp
Default StringPassword - Configure SXP default password
- sxp
Default StringPassword Variable - Variable name
- sxp
Key StringChain - Configure SXP key-chain
- sxp
Key StringChain Variable - Variable name
- sxp
Log BooleanBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp
Log StringBinding Changes Variable - Variable name
- sxp
Reconciliation IntegerPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Reconciliation StringPeriod Variable - Variable name
- sxp
Retry IntegerPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Retry StringPeriod Variable - Variable name
- sxp
Source StringIp - SXP Source IP
- sxp
Source StringIp Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- 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 stringVariable - Variable name
- device
Password string - Set the password for the device
- device
Password stringVariable - Variable name
- device
Sgt number - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device
Sgt stringVariable - Variable name
- enable
Enforcement boolean - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable
Enforcement stringVariable - Variable name
- enable
Sxp boolean - Enable CTS SXP support
- Default value:
false
- Default value:
- listener
Hold numberTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener
Hold stringTime Max Variable - Variable name
- listener
Hold numberTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener
Hold stringTime Min Variable - Variable name
- name string
- The name of the Feature
- speaker
Hold numberTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker
Hold stringTime Variable - Variable name
- sxp
Connections OtherTrustsec Feature Sxp Connection[] - Configure SXP Connections
- sxp
Default stringPassword - Configure SXP default password
- sxp
Default stringPassword Variable - Variable name
- sxp
Key stringChain - Configure SXP key-chain
- sxp
Key stringChain Variable - Variable name
- sxp
Log booleanBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp
Log stringBinding Changes Variable - Variable name
- sxp
Reconciliation numberPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Reconciliation stringPeriod Variable - Variable name
- sxp
Retry numberPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Retry stringPeriod Variable - Variable name
- sxp
Source stringIp - SXP Source IP
- sxp
Source stringIp Variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- 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_ strvariable - Variable name
- device_
password str - Set the password for the device
- device_
password_ strvariable - Variable name
- device_
sgt int - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device_
sgt_ strvariable - Variable name
- enable_
enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable_
enforcement_ strvariable - Variable name
- enable_
sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- listener_
hold_ inttime_ max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener_
hold_ strtime_ max_ variable - Variable name
- listener_
hold_ inttime_ min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener_
hold_ strtime_ min_ variable - Variable name
- name str
- The name of the Feature
- speaker_
hold_ inttime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker_
hold_ strtime_ variable - Variable name
- sxp_
connections Sequence[OtherTrustsec Feature Sxp Connection Args] - Configure SXP Connections
- sxp_
default_ strpassword - Configure SXP default password
- sxp_
default_ strpassword_ variable - Variable name
- sxp_
key_ strchain - Configure SXP key-chain
- sxp_
key_ strchain_ variable - Variable name
- sxp_
log_ boolbinding_ changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp_
log_ strbinding_ changes_ variable - Variable name
- sxp_
reconciliation_ intperiod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
reconciliation_ strperiod_ variable - Variable name
- sxp_
retry_ intperiod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
retry_ strperiod_ variable - Variable name
- sxp_
source_ strip - SXP Source IP
- sxp_
source_ strip_ variable - Variable name
- feature
Profile StringId - Feature Profile ID
- 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 StringVariable - Variable name
- device
Password String - Set the password for the device
- device
Password StringVariable - Variable name
- device
Sgt Number - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device
Sgt StringVariable - Variable name
- enable
Enforcement Boolean - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable
Enforcement StringVariable - Variable name
- enable
Sxp Boolean - Enable CTS SXP support
- Default value:
false
- Default value:
- listener
Hold NumberTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener
Hold StringTime Max Variable - Variable name
- listener
Hold NumberTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener
Hold StringTime Min Variable - Variable name
- name String
- The name of the Feature
- speaker
Hold NumberTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker
Hold StringTime Variable - Variable name
- sxp
Connections List<Property Map> - Configure SXP Connections
- sxp
Default StringPassword - Configure SXP default password
- sxp
Default StringPassword Variable - Variable name
- sxp
Key StringChain - Configure SXP key-chain
- sxp
Key StringChain Variable - Variable name
- sxp
Log BooleanBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp
Log StringBinding Changes Variable - Variable name
- sxp
Reconciliation NumberPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Reconciliation StringPeriod Variable - Variable name
- sxp
Retry NumberPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Retry StringPeriod Variable - Variable name
- sxp
Source StringIp - SXP Source IP
- sxp
Source StringIp Variable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the OtherTrustsecFeature resource produces the following output properties:
Look up Existing OtherTrustsecFeature Resource
Get an existing OtherTrustsecFeature 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?: OtherTrustsecFeatureState, opts?: CustomResourceOptions): OtherTrustsecFeature@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
device_id: Optional[str] = None,
device_id_variable: Optional[str] = None,
device_password: Optional[str] = None,
device_password_variable: Optional[str] = None,
device_sgt: Optional[int] = None,
device_sgt_variable: Optional[str] = None,
enable_enforcement: Optional[bool] = None,
enable_enforcement_variable: Optional[str] = None,
enable_sxp: Optional[bool] = None,
feature_profile_id: Optional[str] = None,
listener_hold_time_max: Optional[int] = None,
listener_hold_time_max_variable: Optional[str] = None,
listener_hold_time_min: Optional[int] = None,
listener_hold_time_min_variable: Optional[str] = None,
name: Optional[str] = None,
speaker_hold_time: Optional[int] = None,
speaker_hold_time_variable: Optional[str] = None,
sxp_connections: Optional[Sequence[OtherTrustsecFeatureSxpConnectionArgs]] = None,
sxp_default_password: Optional[str] = None,
sxp_default_password_variable: Optional[str] = None,
sxp_key_chain: Optional[str] = None,
sxp_key_chain_variable: Optional[str] = None,
sxp_log_binding_changes: Optional[bool] = None,
sxp_log_binding_changes_variable: Optional[str] = None,
sxp_reconciliation_period: Optional[int] = None,
sxp_reconciliation_period_variable: Optional[str] = None,
sxp_retry_period: Optional[int] = None,
sxp_retry_period_variable: Optional[str] = None,
sxp_source_ip: Optional[str] = None,
sxp_source_ip_variable: Optional[str] = None,
version: Optional[int] = None) -> OtherTrustsecFeaturefunc GetOtherTrustsecFeature(ctx *Context, name string, id IDInput, state *OtherTrustsecFeatureState, opts ...ResourceOption) (*OtherTrustsecFeature, error)public static OtherTrustsecFeature Get(string name, Input<string> id, OtherTrustsecFeatureState? state, CustomResourceOptions? opts = null)public static OtherTrustsecFeature get(String name, Output<String> id, OtherTrustsecFeatureState state, CustomResourceOptions options)resources: _: type: sdwan:OtherTrustsecFeature get: id: ${id}import {
to = sdwan_other_trustsec_feature.example
id = "${id}"
}
- 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.
- 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 stringVariable - Variable name
- Device
Password string - Set the password for the device
- Device
Password stringVariable - Variable name
- Device
Sgt int - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- Device
Sgt stringVariable - Variable name
- Enable
Enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- Enable
Enforcement stringVariable - Variable name
- Enable
Sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- Feature
Profile stringId - Feature Profile ID
- Listener
Hold intTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- Listener
Hold stringTime Max Variable - Variable name
- Listener
Hold intTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- Listener
Hold stringTime Min Variable - Variable name
- Name string
- The name of the Feature
- Speaker
Hold intTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- Speaker
Hold stringTime Variable - Variable name
- Sxp
Connections List<OtherTrustsec Feature Sxp Connection> - Configure SXP Connections
- Sxp
Default stringPassword - Configure SXP default password
- Sxp
Default stringPassword Variable - Variable name
- Sxp
Key stringChain - Configure SXP key-chain
- Sxp
Key stringChain Variable - Variable name
- Sxp
Log boolBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- Sxp
Log stringBinding Changes Variable - Variable name
- Sxp
Reconciliation intPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Reconciliation stringPeriod Variable - Variable name
- Sxp
Retry intPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Retry stringPeriod Variable - Variable name
- Sxp
Source stringIp - SXP Source IP
- Sxp
Source stringIp Variable - 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 stringVariable - Variable name
- Device
Password string - Set the password for the device
- Device
Password stringVariable - Variable name
- Device
Sgt int - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- Device
Sgt stringVariable - Variable name
- Enable
Enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- Enable
Enforcement stringVariable - Variable name
- Enable
Sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- Feature
Profile stringId - Feature Profile ID
- Listener
Hold intTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- Listener
Hold stringTime Max Variable - Variable name
- Listener
Hold intTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- Listener
Hold stringTime Min Variable - Variable name
- Name string
- The name of the Feature
- Speaker
Hold intTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- Speaker
Hold stringTime Variable - Variable name
- Sxp
Connections []OtherTrustsec Feature Sxp Connection Args - Configure SXP Connections
- Sxp
Default stringPassword - Configure SXP default password
- Sxp
Default stringPassword Variable - Variable name
- Sxp
Key stringChain - Configure SXP key-chain
- Sxp
Key stringChain Variable - Variable name
- Sxp
Log boolBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- Sxp
Log stringBinding Changes Variable - Variable name
- Sxp
Reconciliation intPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Reconciliation stringPeriod Variable - Variable name
- Sxp
Retry intPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- Sxp
Retry stringPeriod Variable - Variable name
- Sxp
Source stringIp - SXP Source IP
- Sxp
Source stringIp Variable - 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_ stringvariable - Variable name
- device_
password string - Set the password for the device
- device_
password_ stringvariable - Variable name
- device_
sgt number - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device_
sgt_ stringvariable - Variable name
- enable_
enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable_
enforcement_ stringvariable - Variable name
- enable_
sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- feature_
profile_ stringid - Feature Profile ID
- listener_
hold_ numbertime_ max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener_
hold_ stringtime_ max_ variable - Variable name
- listener_
hold_ numbertime_ min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener_
hold_ stringtime_ min_ variable - Variable name
- name string
- The name of the Feature
- speaker_
hold_ numbertime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker_
hold_ stringtime_ variable - Variable name
- sxp_
connections list(object) - Configure SXP Connections
- sxp_
default_ stringpassword - Configure SXP default password
- sxp_
default_ stringpassword_ variable - Variable name
- sxp_
key_ stringchain - Configure SXP key-chain
- sxp_
key_ stringchain_ variable - Variable name
- sxp_
log_ boolbinding_ changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp_
log_ stringbinding_ changes_ variable - Variable name
- sxp_
reconciliation_ numberperiod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
reconciliation_ stringperiod_ variable - Variable name
- sxp_
retry_ numberperiod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
retry_ stringperiod_ variable - Variable name
- sxp_
source_ stringip - SXP Source IP
- sxp_
source_ stringip_ variable - Variable name
- version number
- 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 StringVariable - Variable name
- device
Password String - Set the password for the device
- device
Password StringVariable - Variable name
- device
Sgt Integer - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device
Sgt StringVariable - Variable name
- enable
Enforcement Boolean - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable
Enforcement StringVariable - Variable name
- enable
Sxp Boolean - Enable CTS SXP support
- Default value:
false
- Default value:
- feature
Profile StringId - Feature Profile ID
- listener
Hold IntegerTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener
Hold StringTime Max Variable - Variable name
- listener
Hold IntegerTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener
Hold StringTime Min Variable - Variable name
- name String
- The name of the Feature
- speaker
Hold IntegerTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker
Hold StringTime Variable - Variable name
- sxp
Connections List<OtherTrustsec Feature Sxp Connection> - Configure SXP Connections
- sxp
Default StringPassword - Configure SXP default password
- sxp
Default StringPassword Variable - Variable name
- sxp
Key StringChain - Configure SXP key-chain
- sxp
Key StringChain Variable - Variable name
- sxp
Log BooleanBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp
Log StringBinding Changes Variable - Variable name
- sxp
Reconciliation IntegerPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Reconciliation StringPeriod Variable - Variable name
- sxp
Retry IntegerPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Retry StringPeriod Variable - Variable name
- sxp
Source StringIp - SXP Source IP
- sxp
Source StringIp Variable - Variable name
- version Integer
- 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 stringVariable - Variable name
- device
Password string - Set the password for the device
- device
Password stringVariable - Variable name
- device
Sgt number - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device
Sgt stringVariable - Variable name
- enable
Enforcement boolean - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable
Enforcement stringVariable - Variable name
- enable
Sxp boolean - Enable CTS SXP support
- Default value:
false
- Default value:
- feature
Profile stringId - Feature Profile ID
- listener
Hold numberTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener
Hold stringTime Max Variable - Variable name
- listener
Hold numberTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener
Hold stringTime Min Variable - Variable name
- name string
- The name of the Feature
- speaker
Hold numberTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker
Hold stringTime Variable - Variable name
- sxp
Connections OtherTrustsec Feature Sxp Connection[] - Configure SXP Connections
- sxp
Default stringPassword - Configure SXP default password
- sxp
Default stringPassword Variable - Variable name
- sxp
Key stringChain - Configure SXP key-chain
- sxp
Key stringChain Variable - Variable name
- sxp
Log booleanBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp
Log stringBinding Changes Variable - Variable name
- sxp
Reconciliation numberPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Reconciliation stringPeriod Variable - Variable name
- sxp
Retry numberPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Retry stringPeriod Variable - Variable name
- sxp
Source stringIp - SXP Source IP
- sxp
Source stringIp Variable - 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_ strvariable - Variable name
- device_
password str - Set the password for the device
- device_
password_ strvariable - Variable name
- device_
sgt int - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device_
sgt_ strvariable - Variable name
- enable_
enforcement bool - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable_
enforcement_ strvariable - Variable name
- enable_
sxp bool - Enable CTS SXP support
- Default value:
false
- Default value:
- feature_
profile_ strid - Feature Profile ID
- listener_
hold_ inttime_ max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener_
hold_ strtime_ max_ variable - Variable name
- listener_
hold_ inttime_ min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener_
hold_ strtime_ min_ variable - Variable name
- name str
- The name of the Feature
- speaker_
hold_ inttime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker_
hold_ strtime_ variable - Variable name
- sxp_
connections Sequence[OtherTrustsec Feature Sxp Connection Args] - Configure SXP Connections
- sxp_
default_ strpassword - Configure SXP default password
- sxp_
default_ strpassword_ variable - Variable name
- sxp_
key_ strchain - Configure SXP key-chain
- sxp_
key_ strchain_ variable - Variable name
- sxp_
log_ boolbinding_ changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp_
log_ strbinding_ changes_ variable - Variable name
- sxp_
reconciliation_ intperiod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
reconciliation_ strperiod_ variable - Variable name
- sxp_
retry_ intperiod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp_
retry_ strperiod_ variable - Variable name
- sxp_
source_ strip - SXP Source IP
- sxp_
source_ strip_ variable - 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 StringVariable - Variable name
- device
Password String - Set the password for the device
- device
Password StringVariable - Variable name
- device
Sgt Number - Configure Local device security group <2..65519>
- Range:
2-65519
- Range:
- device
Sgt StringVariable - Variable name
- enable
Enforcement Boolean - Enable Role-based Access Control enforcement
- Default value:
false
- Default value:
- enable
Enforcement StringVariable - Variable name
- enable
Sxp Boolean - Enable CTS SXP support
- Default value:
false
- Default value:
- feature
Profile StringId - Feature Profile ID
- listener
Hold NumberTime Max - Configure Maximum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
180
- Range:
- listener
Hold StringTime Max Variable - Variable name
- listener
Hold NumberTime Min - Configure Minimum allowed hold-time for listener in seconds <1..65534>
- Range:
1-65534 - Default value:
90
- Range:
- listener
Hold StringTime Min Variable - Variable name
- name String
- The name of the Feature
- speaker
Hold NumberTime - Configure Speaker hold-time in seconds <1..65534>
- Range:
1-65534 - Default value:
120
- Range:
- speaker
Hold StringTime Variable - Variable name
- sxp
Connections List<Property Map> - Configure SXP Connections
- sxp
Default StringPassword - Configure SXP default password
- sxp
Default StringPassword Variable - Variable name
- sxp
Key StringChain - Configure SXP key-chain
- sxp
Key StringChain Variable - Variable name
- sxp
Log BooleanBinding Changes - Enables logging for IP-to-SGT binding changes
- Default value:
false
- Default value:
- sxp
Log StringBinding Changes Variable - Variable name
- sxp
Reconciliation NumberPeriod - Configure the SXP reconciliation period in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Reconciliation StringPeriod Variable - Variable name
- sxp
Retry NumberPeriod - Configure Retry period for SXP connection in seconds <0..64000>
- Range:
0-64000 - Default value:
120
- Range:
- sxp
Retry StringPeriod Variable - Variable name
- sxp
Source StringIp - SXP Source IP
- sxp
Source StringIp Variable - Variable name
- version Number
- The version of the Feature
Supporting Types
OtherTrustsecFeatureSxpConnection, OtherTrustsecFeatureSxpConnectionArgs
- Max
Hold intTime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- Max
Hold stringTime Variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - Min
Hold intTime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- Min
Hold stringTime Variable - Variable name, Attribute conditional on
modeTypenot equal toboth - Mode string
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- Mode
Type string - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- Peer
Ip string - Configure SXP Peer IP address (IPv4)
- Peer
Ip stringVariable - Variable name
- string
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- Source
Ip string - Configure SXP Source IP address (IPv4)
- Source
Ip stringVariable - Variable name
- Vpn
Id int - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- Vpn
Id stringVariable - Variable name
- Max
Hold intTime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- Max
Hold stringTime Variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - Min
Hold intTime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- Min
Hold stringTime Variable - Variable name, Attribute conditional on
modeTypenot equal toboth - Mode string
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- Mode
Type string - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- Peer
Ip string - Configure SXP Peer IP address (IPv4)
- Peer
Ip stringVariable - Variable name
- string
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- Source
Ip string - Configure SXP Source IP address (IPv4)
- Source
Ip stringVariable - Variable name
- Vpn
Id int - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- Vpn
Id stringVariable - Variable name
- max_
hold_ numbertime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- max_
hold_ stringtime_ variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - min_
hold_ numbertime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- min_
hold_ stringtime_ variable - Variable name, Attribute conditional on
modeTypenot equal toboth - mode string
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- mode_
type string - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- peer_
ip string - Configure SXP Peer IP address (IPv4)
- peer_
ip_ stringvariable - Variable name
- string
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- source_
ip string - Configure SXP Source IP address (IPv4)
- source_
ip_ stringvariable - Variable name
- vpn_
id number - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- vpn_
id_ stringvariable - Variable name
- max
Hold IntegerTime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- max
Hold StringTime Variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - min
Hold IntegerTime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- min
Hold StringTime Variable - Variable name, Attribute conditional on
modeTypenot equal toboth - mode String
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- mode
Type String - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- peer
Ip String - Configure SXP Peer IP address (IPv4)
- peer
Ip StringVariable - Variable name
- String
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- source
Ip String - Configure SXP Source IP address (IPv4)
- source
Ip StringVariable - Variable name
- vpn
Id Integer - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- vpn
Id StringVariable - Variable name
- max
Hold numberTime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- max
Hold stringTime Variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - min
Hold numberTime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- min
Hold stringTime Variable - Variable name, Attribute conditional on
modeTypenot equal toboth - mode string
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- mode
Type string - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- peer
Ip string - Configure SXP Peer IP address (IPv4)
- peer
Ip stringVariable - Variable name
- string
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- source
Ip string - Configure SXP Source IP address (IPv4)
- source
Ip stringVariable - Variable name
- vpn
Id number - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- vpn
Id stringVariable - Variable name
- max_
hold_ inttime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- max_
hold_ strtime_ variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - min_
hold_ inttime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- min_
hold_ strtime_ variable - Variable name, Attribute conditional on
modeTypenot equal toboth - mode str
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- mode_
type str - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- peer_
ip str - Configure SXP Peer IP address (IPv4)
- peer_
ip_ strvariable - Variable name
- str
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- source_
ip str - Configure SXP Source IP address (IPv4)
- source_
ip_ strvariable - Variable name
- vpn_
id int - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- vpn_
id_ strvariable - Variable name
- max
Hold NumberTime - Configure Connection Maximum hold time <0..65535>, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener)- Range:
0-65535 - Default value:
0
- Range:
- max
Hold StringTime Variable - Variable name, Attribute conditional on (
modeequal topeerandmodeTypeequal tospeaker) or (modeequal tolocalandmodeTypeequal tolistener) - min
Hold NumberTime - Configure Connection Minimum hold time <0..65535>, Attribute conditional on
modeTypenot equal toboth- Range:
0-65535 - Default value:
0
- Range:
- min
Hold StringTime Variable - Variable name, Attribute conditional on
modeTypenot equal toboth - mode String
- Define Mode of connection
- Choices:
local,peer - Default value:
local
- Choices:
- mode
Type String - Define Role of a device <speaker/listener/both>
- Choices:
speaker,listener,both - Default value:
speaker
- Choices:
- peer
Ip String - Configure SXP Peer IP address (IPv4)
- peer
Ip StringVariable - Variable name
- String
- Define Preshared Key type
- Choices:
password,none,key chain - Default value:
none
- Choices:
- source
Ip String - Configure SXP Source IP address (IPv4)
- source
Ip StringVariable - Variable name
- vpn
Id Number - Configure Connection VPN (VRF) ID
- Range:
0-65527 - Default value:
0
- Range:
- vpn
Id StringVariable - Variable name
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “other_trustsec_feature_id,feature_profile_id”
$ pulumi import sdwan:index/otherTrustsecFeature:OtherTrustsecFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
published on Wednesday, Jul 29, 2026 by Pulumi