sdwan.SystemRemoteAccessFeature
Explore with Pulumi AI
This resource can manage a System Remote Access Feature.
- Minimum SD-WAN Manager version: 20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.SystemRemoteAccessFeature("example", {
    name: "Example",
    description: "My Example",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    connectionTypeSsl: false,
    anyConnectEapAuthenticationType: "user",
    ipv4PoolSize: 50,
    ipv6PoolSize: 1024,
    enableCertificateListCheck: false,
    pskAuthenticationType: "aaa",
    radiusGroupName: "radius-1",
    aaaDeriveNameFromPeerIdentity: "MyPassword",
    aaaEnableAccounting: false,
    ikev2LocalIkeIdentityType: "EMAIL",
    ikev2LocalIkeIdentityValue: "abc@xyz.com",
    ikev2SecurityAssociationLifetime: 86400,
    ikev2AntiDosThreshold: 99,
    ipsecEnableAntiReplay: false,
    ipsecSecurityAssociationLifetime: 3600,
    ipsecEnablePerfectFowardSecrecy: false,
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.SystemRemoteAccessFeature("example",
    name="Example",
    description="My Example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    connection_type_ssl=False,
    any_connect_eap_authentication_type="user",
    ipv4_pool_size=50,
    ipv6_pool_size=1024,
    enable_certificate_list_check=False,
    psk_authentication_type="aaa",
    radius_group_name="radius-1",
    aaa_derive_name_from_peer_identity="MyPassword",
    aaa_enable_accounting=False,
    ikev2_local_ike_identity_type="EMAIL",
    ikev2_local_ike_identity_value="abc@xyz.com",
    ikev2_security_association_lifetime=86400,
    ikev2_anti_dos_threshold=99,
    ipsec_enable_anti_replay=False,
    ipsec_security_association_lifetime=3600,
    ipsec_enable_perfect_foward_secrecy=False)
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.NewSystemRemoteAccessFeature(ctx, "example", &sdwan.SystemRemoteAccessFeatureArgs{
			Name:                             pulumi.String("Example"),
			Description:                      pulumi.String("My Example"),
			FeatureProfileId:                 pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			ConnectionTypeSsl:                pulumi.Bool(false),
			AnyConnectEapAuthenticationType:  pulumi.String("user"),
			Ipv4PoolSize:                     pulumi.Int(50),
			Ipv6PoolSize:                     pulumi.Int(1024),
			EnableCertificateListCheck:       pulumi.Bool(false),
			PskAuthenticationType:            pulumi.String("aaa"),
			RadiusGroupName:                  pulumi.String("radius-1"),
			AaaDeriveNameFromPeerIdentity:    pulumi.String("MyPassword"),
			AaaEnableAccounting:              pulumi.Bool(false),
			Ikev2LocalIkeIdentityType:        pulumi.String("EMAIL"),
			Ikev2LocalIkeIdentityValue:       pulumi.String("abc@xyz.com"),
			Ikev2SecurityAssociationLifetime: pulumi.Int(86400),
			Ikev2AntiDosThreshold:            pulumi.Int(99),
			IpsecEnableAntiReplay:            pulumi.Bool(false),
			IpsecSecurityAssociationLifetime: pulumi.Int(3600),
			IpsecEnablePerfectFowardSecrecy:  pulumi.Bool(false),
		})
		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.SystemRemoteAccessFeature("example", new()
    {
        Name = "Example",
        Description = "My Example",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        ConnectionTypeSsl = false,
        AnyConnectEapAuthenticationType = "user",
        Ipv4PoolSize = 50,
        Ipv6PoolSize = 1024,
        EnableCertificateListCheck = false,
        PskAuthenticationType = "aaa",
        RadiusGroupName = "radius-1",
        AaaDeriveNameFromPeerIdentity = "MyPassword",
        AaaEnableAccounting = false,
        Ikev2LocalIkeIdentityType = "EMAIL",
        Ikev2LocalIkeIdentityValue = "abc@xyz.com",
        Ikev2SecurityAssociationLifetime = 86400,
        Ikev2AntiDosThreshold = 99,
        IpsecEnableAntiReplay = false,
        IpsecSecurityAssociationLifetime = 3600,
        IpsecEnablePerfectFowardSecrecy = false,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SystemRemoteAccessFeature;
import com.pulumi.sdwan.SystemRemoteAccessFeatureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new SystemRemoteAccessFeature("example", SystemRemoteAccessFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .connectionTypeSsl(false)
            .anyConnectEapAuthenticationType("user")
            .ipv4PoolSize(50)
            .ipv6PoolSize(1024)
            .enableCertificateListCheck(false)
            .pskAuthenticationType("aaa")
            .radiusGroupName("radius-1")
            .aaaDeriveNameFromPeerIdentity("MyPassword")
            .aaaEnableAccounting(false)
            .ikev2LocalIkeIdentityType("EMAIL")
            .ikev2LocalIkeIdentityValue("abc@xyz.com")
            .ikev2SecurityAssociationLifetime(86400)
            .ikev2AntiDosThreshold(99)
            .ipsecEnableAntiReplay(false)
            .ipsecSecurityAssociationLifetime(3600)
            .ipsecEnablePerfectFowardSecrecy(false)
            .build());
    }
}
resources:
  example:
    type: sdwan:SystemRemoteAccessFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      connectionTypeSsl: false
      anyConnectEapAuthenticationType: user
      ipv4PoolSize: 50
      ipv6PoolSize: 1024
      enableCertificateListCheck: false
      pskAuthenticationType: aaa
      radiusGroupName: radius-1
      aaaDeriveNameFromPeerIdentity: MyPassword
      aaaEnableAccounting: false
      ikev2LocalIkeIdentityType: EMAIL
      ikev2LocalIkeIdentityValue: abc@xyz.com
      ikev2SecurityAssociationLifetime: 86400
      ikev2AntiDosThreshold: 99
      ipsecEnableAntiReplay: false
      ipsecSecurityAssociationLifetime: 3600
      ipsecEnablePerfectFowardSecrecy: false
Create SystemRemoteAccessFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemRemoteAccessFeature(name: string, args: SystemRemoteAccessFeatureArgs, opts?: CustomResourceOptions);@overload
def SystemRemoteAccessFeature(resource_name: str,
                              args: SystemRemoteAccessFeatureArgs,
                              opts: Optional[ResourceOptions] = None)
@overload
def SystemRemoteAccessFeature(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              radius_group_name: Optional[str] = None,
                              ikev2_local_ike_identity_value: Optional[str] = None,
                              aaa_specify_name_policy_password: Optional[str] = None,
                              ikev2_security_association_lifetime_variable: Optional[str] = None,
                              aaa_enable_accounting: Optional[bool] = None,
                              aaa_enable_accounting_variable: Optional[str] = None,
                              aaa_specify_name_policy_name: Optional[str] = None,
                              aaa_specify_name_policy_name_variable: Optional[str] = None,
                              ikev2_security_association_lifetime: Optional[int] = None,
                              aaa_specify_name_policy_password_variable: Optional[str] = None,
                              any_connect_eap_authentication_type: Optional[str] = None,
                              connection_type_ssl: Optional[bool] = None,
                              description: Optional[str] = None,
                              ikev2_local_ike_identity_value_variable: Optional[str] = None,
                              enable_certificate_list_check_variable: Optional[str] = None,
                              feature_profile_id: Optional[str] = None,
                              ikev2_anti_dos_threshold: Optional[int] = None,
                              ikev2_anti_dos_threshold_variable: Optional[str] = None,
                              ikev2_local_ike_identity_type: Optional[str] = None,
                              ikev2_local_ike_identity_type_variable: Optional[str] = None,
                              aaa_derive_name_from_peer_domain: Optional[str] = None,
                              enable_certificate_list_check: Optional[bool] = None,
                              aaa_derive_name_from_peer_identity: Optional[str] = None,
                              aaa_derive_name_from_peer_identity_variable: Optional[str] = None,
                              ipsec_anti_replay_window_size: Optional[int] = None,
                              ipsec_anti_replay_window_size_variable: Optional[str] = None,
                              ipsec_enable_anti_replay: Optional[bool] = None,
                              ipsec_enable_anti_replay_variable: Optional[str] = None,
                              ipsec_enable_perfect_foward_secrecy: Optional[bool] = None,
                              ipsec_enable_perfect_foward_secrecy_variable: Optional[str] = None,
                              ipsec_security_association_lifetime: Optional[int] = None,
                              ipsec_security_association_lifetime_variable: Optional[str] = None,
                              ipv4_pool_size: Optional[int] = None,
                              ipv4_pool_size_variable: Optional[str] = None,
                              ipv6_pool_size: Optional[int] = None,
                              ipv6_pool_size_variable: Optional[str] = None,
                              name: Optional[str] = None,
                              psk_authentication_pre_shared_key: Optional[str] = None,
                              psk_authentication_pre_shared_key_variable: Optional[str] = None,
                              psk_authentication_type: Optional[str] = None,
                              psk_authentication_type_variable: Optional[str] = None,
                              aaa_derive_name_from_peer_domain_variable: Optional[str] = None,
                              radius_group_name_variable: Optional[str] = None)func NewSystemRemoteAccessFeature(ctx *Context, name string, args SystemRemoteAccessFeatureArgs, opts ...ResourceOption) (*SystemRemoteAccessFeature, error)public SystemRemoteAccessFeature(string name, SystemRemoteAccessFeatureArgs args, CustomResourceOptions? opts = null)
public SystemRemoteAccessFeature(String name, SystemRemoteAccessFeatureArgs args)
public SystemRemoteAccessFeature(String name, SystemRemoteAccessFeatureArgs args, CustomResourceOptions options)
type: sdwan:SystemRemoteAccessFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SystemRemoteAccessFeatureArgs
- 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 SystemRemoteAccessFeatureArgs
- 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 SystemRemoteAccessFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemRemoteAccessFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemRemoteAccessFeatureArgs
- 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 systemRemoteAccessFeatureResource = new Sdwan.SystemRemoteAccessFeature("systemRemoteAccessFeatureResource", new()
{
    RadiusGroupName = "string",
    Ikev2LocalIkeIdentityValue = "string",
    AaaSpecifyNamePolicyPassword = "string",
    Ikev2SecurityAssociationLifetimeVariable = "string",
    AaaEnableAccounting = false,
    AaaEnableAccountingVariable = "string",
    AaaSpecifyNamePolicyName = "string",
    AaaSpecifyNamePolicyNameVariable = "string",
    Ikev2SecurityAssociationLifetime = 0,
    AaaSpecifyNamePolicyPasswordVariable = "string",
    AnyConnectEapAuthenticationType = "string",
    ConnectionTypeSsl = false,
    Description = "string",
    Ikev2LocalIkeIdentityValueVariable = "string",
    EnableCertificateListCheckVariable = "string",
    FeatureProfileId = "string",
    Ikev2AntiDosThreshold = 0,
    Ikev2AntiDosThresholdVariable = "string",
    Ikev2LocalIkeIdentityType = "string",
    Ikev2LocalIkeIdentityTypeVariable = "string",
    AaaDeriveNameFromPeerDomain = "string",
    EnableCertificateListCheck = false,
    AaaDeriveNameFromPeerIdentity = "string",
    AaaDeriveNameFromPeerIdentityVariable = "string",
    IpsecAntiReplayWindowSize = 0,
    IpsecAntiReplayWindowSizeVariable = "string",
    IpsecEnableAntiReplay = false,
    IpsecEnableAntiReplayVariable = "string",
    IpsecEnablePerfectFowardSecrecy = false,
    IpsecEnablePerfectFowardSecrecyVariable = "string",
    IpsecSecurityAssociationLifetime = 0,
    IpsecSecurityAssociationLifetimeVariable = "string",
    Ipv4PoolSize = 0,
    Ipv4PoolSizeVariable = "string",
    Ipv6PoolSize = 0,
    Ipv6PoolSizeVariable = "string",
    Name = "string",
    PskAuthenticationPreSharedKey = "string",
    PskAuthenticationPreSharedKeyVariable = "string",
    PskAuthenticationType = "string",
    PskAuthenticationTypeVariable = "string",
    AaaDeriveNameFromPeerDomainVariable = "string",
    RadiusGroupNameVariable = "string",
});
example, err := sdwan.NewSystemRemoteAccessFeature(ctx, "systemRemoteAccessFeatureResource", &sdwan.SystemRemoteAccessFeatureArgs{
	RadiusGroupName:                          pulumi.String("string"),
	Ikev2LocalIkeIdentityValue:               pulumi.String("string"),
	AaaSpecifyNamePolicyPassword:             pulumi.String("string"),
	Ikev2SecurityAssociationLifetimeVariable: pulumi.String("string"),
	AaaEnableAccounting:                      pulumi.Bool(false),
	AaaEnableAccountingVariable:              pulumi.String("string"),
	AaaSpecifyNamePolicyName:                 pulumi.String("string"),
	AaaSpecifyNamePolicyNameVariable:         pulumi.String("string"),
	Ikev2SecurityAssociationLifetime:         pulumi.Int(0),
	AaaSpecifyNamePolicyPasswordVariable:     pulumi.String("string"),
	AnyConnectEapAuthenticationType:          pulumi.String("string"),
	ConnectionTypeSsl:                        pulumi.Bool(false),
	Description:                              pulumi.String("string"),
	Ikev2LocalIkeIdentityValueVariable:       pulumi.String("string"),
	EnableCertificateListCheckVariable:       pulumi.String("string"),
	FeatureProfileId:                         pulumi.String("string"),
	Ikev2AntiDosThreshold:                    pulumi.Int(0),
	Ikev2AntiDosThresholdVariable:            pulumi.String("string"),
	Ikev2LocalIkeIdentityType:                pulumi.String("string"),
	Ikev2LocalIkeIdentityTypeVariable:        pulumi.String("string"),
	AaaDeriveNameFromPeerDomain:              pulumi.String("string"),
	EnableCertificateListCheck:               pulumi.Bool(false),
	AaaDeriveNameFromPeerIdentity:            pulumi.String("string"),
	AaaDeriveNameFromPeerIdentityVariable:    pulumi.String("string"),
	IpsecAntiReplayWindowSize:                pulumi.Int(0),
	IpsecAntiReplayWindowSizeVariable:        pulumi.String("string"),
	IpsecEnableAntiReplay:                    pulumi.Bool(false),
	IpsecEnableAntiReplayVariable:            pulumi.String("string"),
	IpsecEnablePerfectFowardSecrecy:          pulumi.Bool(false),
	IpsecEnablePerfectFowardSecrecyVariable:  pulumi.String("string"),
	IpsecSecurityAssociationLifetime:         pulumi.Int(0),
	IpsecSecurityAssociationLifetimeVariable: pulumi.String("string"),
	Ipv4PoolSize:                             pulumi.Int(0),
	Ipv4PoolSizeVariable:                     pulumi.String("string"),
	Ipv6PoolSize:                             pulumi.Int(0),
	Ipv6PoolSizeVariable:                     pulumi.String("string"),
	Name:                                     pulumi.String("string"),
	PskAuthenticationPreSharedKey:            pulumi.String("string"),
	PskAuthenticationPreSharedKeyVariable:    pulumi.String("string"),
	PskAuthenticationType:                    pulumi.String("string"),
	PskAuthenticationTypeVariable:            pulumi.String("string"),
	AaaDeriveNameFromPeerDomainVariable:      pulumi.String("string"),
	RadiusGroupNameVariable:                  pulumi.String("string"),
})
var systemRemoteAccessFeatureResource = new SystemRemoteAccessFeature("systemRemoteAccessFeatureResource", SystemRemoteAccessFeatureArgs.builder()
    .radiusGroupName("string")
    .ikev2LocalIkeIdentityValue("string")
    .aaaSpecifyNamePolicyPassword("string")
    .ikev2SecurityAssociationLifetimeVariable("string")
    .aaaEnableAccounting(false)
    .aaaEnableAccountingVariable("string")
    .aaaSpecifyNamePolicyName("string")
    .aaaSpecifyNamePolicyNameVariable("string")
    .ikev2SecurityAssociationLifetime(0)
    .aaaSpecifyNamePolicyPasswordVariable("string")
    .anyConnectEapAuthenticationType("string")
    .connectionTypeSsl(false)
    .description("string")
    .ikev2LocalIkeIdentityValueVariable("string")
    .enableCertificateListCheckVariable("string")
    .featureProfileId("string")
    .ikev2AntiDosThreshold(0)
    .ikev2AntiDosThresholdVariable("string")
    .ikev2LocalIkeIdentityType("string")
    .ikev2LocalIkeIdentityTypeVariable("string")
    .aaaDeriveNameFromPeerDomain("string")
    .enableCertificateListCheck(false)
    .aaaDeriveNameFromPeerIdentity("string")
    .aaaDeriveNameFromPeerIdentityVariable("string")
    .ipsecAntiReplayWindowSize(0)
    .ipsecAntiReplayWindowSizeVariable("string")
    .ipsecEnableAntiReplay(false)
    .ipsecEnableAntiReplayVariable("string")
    .ipsecEnablePerfectFowardSecrecy(false)
    .ipsecEnablePerfectFowardSecrecyVariable("string")
    .ipsecSecurityAssociationLifetime(0)
    .ipsecSecurityAssociationLifetimeVariable("string")
    .ipv4PoolSize(0)
    .ipv4PoolSizeVariable("string")
    .ipv6PoolSize(0)
    .ipv6PoolSizeVariable("string")
    .name("string")
    .pskAuthenticationPreSharedKey("string")
    .pskAuthenticationPreSharedKeyVariable("string")
    .pskAuthenticationType("string")
    .pskAuthenticationTypeVariable("string")
    .aaaDeriveNameFromPeerDomainVariable("string")
    .radiusGroupNameVariable("string")
    .build());
system_remote_access_feature_resource = sdwan.SystemRemoteAccessFeature("systemRemoteAccessFeatureResource",
    radius_group_name="string",
    ikev2_local_ike_identity_value="string",
    aaa_specify_name_policy_password="string",
    ikev2_security_association_lifetime_variable="string",
    aaa_enable_accounting=False,
    aaa_enable_accounting_variable="string",
    aaa_specify_name_policy_name="string",
    aaa_specify_name_policy_name_variable="string",
    ikev2_security_association_lifetime=0,
    aaa_specify_name_policy_password_variable="string",
    any_connect_eap_authentication_type="string",
    connection_type_ssl=False,
    description="string",
    ikev2_local_ike_identity_value_variable="string",
    enable_certificate_list_check_variable="string",
    feature_profile_id="string",
    ikev2_anti_dos_threshold=0,
    ikev2_anti_dos_threshold_variable="string",
    ikev2_local_ike_identity_type="string",
    ikev2_local_ike_identity_type_variable="string",
    aaa_derive_name_from_peer_domain="string",
    enable_certificate_list_check=False,
    aaa_derive_name_from_peer_identity="string",
    aaa_derive_name_from_peer_identity_variable="string",
    ipsec_anti_replay_window_size=0,
    ipsec_anti_replay_window_size_variable="string",
    ipsec_enable_anti_replay=False,
    ipsec_enable_anti_replay_variable="string",
    ipsec_enable_perfect_foward_secrecy=False,
    ipsec_enable_perfect_foward_secrecy_variable="string",
    ipsec_security_association_lifetime=0,
    ipsec_security_association_lifetime_variable="string",
    ipv4_pool_size=0,
    ipv4_pool_size_variable="string",
    ipv6_pool_size=0,
    ipv6_pool_size_variable="string",
    name="string",
    psk_authentication_pre_shared_key="string",
    psk_authentication_pre_shared_key_variable="string",
    psk_authentication_type="string",
    psk_authentication_type_variable="string",
    aaa_derive_name_from_peer_domain_variable="string",
    radius_group_name_variable="string")
const systemRemoteAccessFeatureResource = new sdwan.SystemRemoteAccessFeature("systemRemoteAccessFeatureResource", {
    radiusGroupName: "string",
    ikev2LocalIkeIdentityValue: "string",
    aaaSpecifyNamePolicyPassword: "string",
    ikev2SecurityAssociationLifetimeVariable: "string",
    aaaEnableAccounting: false,
    aaaEnableAccountingVariable: "string",
    aaaSpecifyNamePolicyName: "string",
    aaaSpecifyNamePolicyNameVariable: "string",
    ikev2SecurityAssociationLifetime: 0,
    aaaSpecifyNamePolicyPasswordVariable: "string",
    anyConnectEapAuthenticationType: "string",
    connectionTypeSsl: false,
    description: "string",
    ikev2LocalIkeIdentityValueVariable: "string",
    enableCertificateListCheckVariable: "string",
    featureProfileId: "string",
    ikev2AntiDosThreshold: 0,
    ikev2AntiDosThresholdVariable: "string",
    ikev2LocalIkeIdentityType: "string",
    ikev2LocalIkeIdentityTypeVariable: "string",
    aaaDeriveNameFromPeerDomain: "string",
    enableCertificateListCheck: false,
    aaaDeriveNameFromPeerIdentity: "string",
    aaaDeriveNameFromPeerIdentityVariable: "string",
    ipsecAntiReplayWindowSize: 0,
    ipsecAntiReplayWindowSizeVariable: "string",
    ipsecEnableAntiReplay: false,
    ipsecEnableAntiReplayVariable: "string",
    ipsecEnablePerfectFowardSecrecy: false,
    ipsecEnablePerfectFowardSecrecyVariable: "string",
    ipsecSecurityAssociationLifetime: 0,
    ipsecSecurityAssociationLifetimeVariable: "string",
    ipv4PoolSize: 0,
    ipv4PoolSizeVariable: "string",
    ipv6PoolSize: 0,
    ipv6PoolSizeVariable: "string",
    name: "string",
    pskAuthenticationPreSharedKey: "string",
    pskAuthenticationPreSharedKeyVariable: "string",
    pskAuthenticationType: "string",
    pskAuthenticationTypeVariable: "string",
    aaaDeriveNameFromPeerDomainVariable: "string",
    radiusGroupNameVariable: "string",
});
type: sdwan:SystemRemoteAccessFeature
properties:
    aaaDeriveNameFromPeerDomain: string
    aaaDeriveNameFromPeerDomainVariable: string
    aaaDeriveNameFromPeerIdentity: string
    aaaDeriveNameFromPeerIdentityVariable: string
    aaaEnableAccounting: false
    aaaEnableAccountingVariable: string
    aaaSpecifyNamePolicyName: string
    aaaSpecifyNamePolicyNameVariable: string
    aaaSpecifyNamePolicyPassword: string
    aaaSpecifyNamePolicyPasswordVariable: string
    anyConnectEapAuthenticationType: string
    connectionTypeSsl: false
    description: string
    enableCertificateListCheck: false
    enableCertificateListCheckVariable: string
    featureProfileId: string
    ikev2AntiDosThreshold: 0
    ikev2AntiDosThresholdVariable: string
    ikev2LocalIkeIdentityType: string
    ikev2LocalIkeIdentityTypeVariable: string
    ikev2LocalIkeIdentityValue: string
    ikev2LocalIkeIdentityValueVariable: string
    ikev2SecurityAssociationLifetime: 0
    ikev2SecurityAssociationLifetimeVariable: string
    ipsecAntiReplayWindowSize: 0
    ipsecAntiReplayWindowSizeVariable: string
    ipsecEnableAntiReplay: false
    ipsecEnableAntiReplayVariable: string
    ipsecEnablePerfectFowardSecrecy: false
    ipsecEnablePerfectFowardSecrecyVariable: string
    ipsecSecurityAssociationLifetime: 0
    ipsecSecurityAssociationLifetimeVariable: string
    ipv4PoolSize: 0
    ipv4PoolSizeVariable: string
    ipv6PoolSize: 0
    ipv6PoolSizeVariable: string
    name: string
    pskAuthenticationPreSharedKey: string
    pskAuthenticationPreSharedKeyVariable: string
    pskAuthenticationType: string
    pskAuthenticationTypeVariable: string
    radiusGroupName: string
    radiusGroupNameVariable: string
SystemRemoteAccessFeature 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 SystemRemoteAccessFeature resource accepts the following input properties:
- RadiusGroup stringName 
- AaaDerive stringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Domain Variable 
- Variable name
- AaaDerive stringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Identity Variable 
- Variable name
- AaaEnable boolAccounting 
- Enable Accounting - Default value: true
- AaaEnable stringAccounting Variable 
- Variable name
- AaaSpecify stringName Policy Name 
- AaaSpecify stringName Policy Name Variable 
- Variable name
- AaaSpecify stringName Policy Password 
- AaaSpecify stringName Policy Password Variable 
- Variable name
- AnyConnect stringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- ConnectionType boolSsl 
- Enabled SSL VPN - Default value: false
- Description string
- The description of the Feature
- EnableCertificate boolList Check 
- Default value: false
 
- Default value: 
- EnableCertificate stringList Check Variable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Ikev2AntiDos intThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- Ikev2AntiDos stringThreshold Variable 
- Variable name
- Ikev2LocalIke stringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- Ikev2LocalIke stringIdentity Type Variable 
- Variable name
- Ikev2LocalIke stringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- Ikev2LocalIke stringIdentity Value Variable 
- Variable name
- Ikev2SecurityAssociation intLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- Ikev2SecurityAssociation stringLifetime Variable 
- Variable name
- IpsecAnti intReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- IpsecAnti stringReplay Window Size Variable 
- Variable name
- IpsecEnable boolAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- IpsecEnable stringAnti Replay Variable 
- Variable name
- IpsecEnable boolPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- IpsecEnable stringPerfect Foward Secrecy Variable 
- Variable name
- IpsecSecurity intAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- IpsecSecurity stringAssociation Lifetime Variable 
- Variable name
- Ipv4PoolSize int
- IPv4 Pool Size - Default value: 1000
- Ipv4PoolSize stringVariable 
- Variable name
- Ipv6PoolSize int
- IPv6 Pool Size - Default value: 1024
- Ipv6PoolSize stringVariable 
- Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- string
- Variable name
- PskAuthentication stringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- PskAuthentication stringType Variable 
- Variable name
- RadiusGroup stringName Variable 
- Variable name
- RadiusGroup stringName 
- AaaDerive stringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Domain Variable 
- Variable name
- AaaDerive stringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Identity Variable 
- Variable name
- AaaEnable boolAccounting 
- Enable Accounting - Default value: true
- AaaEnable stringAccounting Variable 
- Variable name
- AaaSpecify stringName Policy Name 
- AaaSpecify stringName Policy Name Variable 
- Variable name
- AaaSpecify stringName Policy Password 
- AaaSpecify stringName Policy Password Variable 
- Variable name
- AnyConnect stringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- ConnectionType boolSsl 
- Enabled SSL VPN - Default value: false
- Description string
- The description of the Feature
- EnableCertificate boolList Check 
- Default value: false
 
- Default value: 
- EnableCertificate stringList Check Variable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Ikev2AntiDos intThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- Ikev2AntiDos stringThreshold Variable 
- Variable name
- Ikev2LocalIke stringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- Ikev2LocalIke stringIdentity Type Variable 
- Variable name
- Ikev2LocalIke stringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- Ikev2LocalIke stringIdentity Value Variable 
- Variable name
- Ikev2SecurityAssociation intLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- Ikev2SecurityAssociation stringLifetime Variable 
- Variable name
- IpsecAnti intReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- IpsecAnti stringReplay Window Size Variable 
- Variable name
- IpsecEnable boolAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- IpsecEnable stringAnti Replay Variable 
- Variable name
- IpsecEnable boolPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- IpsecEnable stringPerfect Foward Secrecy Variable 
- Variable name
- IpsecSecurity intAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- IpsecSecurity stringAssociation Lifetime Variable 
- Variable name
- Ipv4PoolSize int
- IPv4 Pool Size - Default value: 1000
- Ipv4PoolSize stringVariable 
- Variable name
- Ipv6PoolSize int
- IPv6 Pool Size - Default value: 1024
- Ipv6PoolSize stringVariable 
- Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- string
- Variable name
- PskAuthentication stringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- PskAuthentication stringType Variable 
- Variable name
- RadiusGroup stringName Variable 
- Variable name
- radiusGroup StringName 
- aaaDerive StringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Domain Variable 
- Variable name
- aaaDerive StringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Identity Variable 
- Variable name
- aaaEnable BooleanAccounting 
- Enable Accounting - Default value: true
- aaaEnable StringAccounting Variable 
- Variable name
- aaaSpecify StringName Policy Name 
- aaaSpecify StringName Policy Name Variable 
- Variable name
- aaaSpecify StringName Policy Password 
- aaaSpecify StringName Policy Password Variable 
- Variable name
- anyConnect StringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connectionType BooleanSsl 
- Enabled SSL VPN - Default value: false
- description String
- The description of the Feature
- enableCertificate BooleanList Check 
- Default value: false
 
- Default value: 
- enableCertificate StringList Check Variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- ikev2AntiDos IntegerThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2AntiDos StringThreshold Variable 
- Variable name
- ikev2LocalIke StringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2LocalIke StringIdentity Type Variable 
- Variable name
- ikev2LocalIke StringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2LocalIke StringIdentity Value Variable 
- Variable name
- ikev2SecurityAssociation IntegerLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2SecurityAssociation StringLifetime Variable 
- Variable name
- ipsecAnti IntegerReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsecAnti StringReplay Window Size Variable 
- Variable name
- ipsecEnable BooleanAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsecEnable StringAnti Replay Variable 
- Variable name
- ipsecEnable BooleanPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsecEnable StringPerfect Foward Secrecy Variable 
- Variable name
- ipsecSecurity IntegerAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsecSecurity StringAssociation Lifetime Variable 
- Variable name
- ipv4PoolSize Integer
- IPv4 Pool Size - Default value: 1000
- ipv4PoolSize StringVariable 
- Variable name
- ipv6PoolSize Integer
- IPv6 Pool Size - Default value: 1024
- ipv6PoolSize StringVariable 
- Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- String
- Variable name
- pskAuthentication StringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- pskAuthentication StringType Variable 
- Variable name
- radiusGroup StringName Variable 
- Variable name
- radiusGroup stringName 
- aaaDerive stringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive stringName From Peer Domain Variable 
- Variable name
- aaaDerive stringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive stringName From Peer Identity Variable 
- Variable name
- aaaEnable booleanAccounting 
- Enable Accounting - Default value: true
- aaaEnable stringAccounting Variable 
- Variable name
- aaaSpecify stringName Policy Name 
- aaaSpecify stringName Policy Name Variable 
- Variable name
- aaaSpecify stringName Policy Password 
- aaaSpecify stringName Policy Password Variable 
- Variable name
- anyConnect stringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connectionType booleanSsl 
- Enabled SSL VPN - Default value: false
- description string
- The description of the Feature
- enableCertificate booleanList Check 
- Default value: false
 
- Default value: 
- enableCertificate stringList Check Variable 
- Variable name
- featureProfile stringId 
- Feature Profile ID
- ikev2AntiDos numberThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2AntiDos stringThreshold Variable 
- Variable name
- ikev2LocalIke stringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2LocalIke stringIdentity Type Variable 
- Variable name
- ikev2LocalIke stringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2LocalIke stringIdentity Value Variable 
- Variable name
- ikev2SecurityAssociation numberLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2SecurityAssociation stringLifetime Variable 
- Variable name
- ipsecAnti numberReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsecAnti stringReplay Window Size Variable 
- Variable name
- ipsecEnable booleanAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsecEnable stringAnti Replay Variable 
- Variable name
- ipsecEnable booleanPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsecEnable stringPerfect Foward Secrecy Variable 
- Variable name
- ipsecSecurity numberAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsecSecurity stringAssociation Lifetime Variable 
- Variable name
- ipv4PoolSize number
- IPv4 Pool Size - Default value: 1000
- ipv4PoolSize stringVariable 
- Variable name
- ipv6PoolSize number
- IPv6 Pool Size - Default value: 1024
- ipv6PoolSize stringVariable 
- Variable name
- name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- string
- Variable name
- pskAuthentication stringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- pskAuthentication stringType Variable 
- Variable name
- radiusGroup stringName Variable 
- Variable name
- radius_group_ strname 
- aaa_derive_ strname_ from_ peer_ domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaa_derive_ strname_ from_ peer_ domain_ variable 
- Variable name
- aaa_derive_ strname_ from_ peer_ identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaa_derive_ strname_ from_ peer_ identity_ variable 
- Variable name
- aaa_enable_ boolaccounting 
- Enable Accounting - Default value: true
- aaa_enable_ straccounting_ variable 
- Variable name
- aaa_specify_ strname_ policy_ name 
- aaa_specify_ strname_ policy_ name_ variable 
- Variable name
- aaa_specify_ strname_ policy_ password 
- aaa_specify_ strname_ policy_ password_ variable 
- Variable name
- any_connect_ streap_ authentication_ type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connection_type_ boolssl 
- Enabled SSL VPN - Default value: false
- description str
- The description of the Feature
- enable_certificate_ boollist_ check 
- Default value: false
 
- Default value: 
- enable_certificate_ strlist_ check_ variable 
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- ikev2_anti_ intdos_ threshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2_anti_ strdos_ threshold_ variable 
- Variable name
- ikev2_local_ strike_ identity_ type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2_local_ strike_ identity_ type_ variable 
- Variable name
- ikev2_local_ strike_ identity_ value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2_local_ strike_ identity_ value_ variable 
- Variable name
- ikev2_security_ intassociation_ lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2_security_ strassociation_ lifetime_ variable 
- Variable name
- ipsec_anti_ intreplay_ window_ size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsec_anti_ strreplay_ window_ size_ variable 
- Variable name
- ipsec_enable_ boolanti_ replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsec_enable_ stranti_ replay_ variable 
- Variable name
- ipsec_enable_ boolperfect_ foward_ secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsec_enable_ strperfect_ foward_ secrecy_ variable 
- Variable name
- ipsec_security_ intassociation_ lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsec_security_ strassociation_ lifetime_ variable 
- Variable name
- ipv4_pool_ intsize 
- IPv4 Pool Size - Default value: 1000
- ipv4_pool_ strsize_ variable 
- Variable name
- ipv6_pool_ intsize 
- IPv6 Pool Size - Default value: 1024
- ipv6_pool_ strsize_ variable 
- Variable name
- name str
- The name of the Feature
- str
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- str
- Variable name
- psk_authentication_ strtype 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- psk_authentication_ strtype_ variable 
- Variable name
- radius_group_ strname_ variable 
- Variable name
- radiusGroup StringName 
- aaaDerive StringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Domain Variable 
- Variable name
- aaaDerive StringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Identity Variable 
- Variable name
- aaaEnable BooleanAccounting 
- Enable Accounting - Default value: true
- aaaEnable StringAccounting Variable 
- Variable name
- aaaSpecify StringName Policy Name 
- aaaSpecify StringName Policy Name Variable 
- Variable name
- aaaSpecify StringName Policy Password 
- aaaSpecify StringName Policy Password Variable 
- Variable name
- anyConnect StringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connectionType BooleanSsl 
- Enabled SSL VPN - Default value: false
- description String
- The description of the Feature
- enableCertificate BooleanList Check 
- Default value: false
 
- Default value: 
- enableCertificate StringList Check Variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- ikev2AntiDos NumberThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2AntiDos StringThreshold Variable 
- Variable name
- ikev2LocalIke StringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2LocalIke StringIdentity Type Variable 
- Variable name
- ikev2LocalIke StringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2LocalIke StringIdentity Value Variable 
- Variable name
- ikev2SecurityAssociation NumberLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2SecurityAssociation StringLifetime Variable 
- Variable name
- ipsecAnti NumberReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsecAnti StringReplay Window Size Variable 
- Variable name
- ipsecEnable BooleanAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsecEnable StringAnti Replay Variable 
- Variable name
- ipsecEnable BooleanPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsecEnable StringPerfect Foward Secrecy Variable 
- Variable name
- ipsecSecurity NumberAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsecSecurity StringAssociation Lifetime Variable 
- Variable name
- ipv4PoolSize Number
- IPv4 Pool Size - Default value: 1000
- ipv4PoolSize StringVariable 
- Variable name
- ipv6PoolSize Number
- IPv6 Pool Size - Default value: 1024
- ipv6PoolSize StringVariable 
- Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- String
- Variable name
- pskAuthentication StringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- pskAuthentication StringType Variable 
- Variable name
- radiusGroup StringName Variable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemRemoteAccessFeature resource produces the following output properties:
Look up Existing SystemRemoteAccessFeature Resource
Get an existing SystemRemoteAccessFeature 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?: SystemRemoteAccessFeatureState, opts?: CustomResourceOptions): SystemRemoteAccessFeature@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        aaa_derive_name_from_peer_domain: Optional[str] = None,
        aaa_derive_name_from_peer_domain_variable: Optional[str] = None,
        aaa_derive_name_from_peer_identity: Optional[str] = None,
        aaa_derive_name_from_peer_identity_variable: Optional[str] = None,
        aaa_enable_accounting: Optional[bool] = None,
        aaa_enable_accounting_variable: Optional[str] = None,
        aaa_specify_name_policy_name: Optional[str] = None,
        aaa_specify_name_policy_name_variable: Optional[str] = None,
        aaa_specify_name_policy_password: Optional[str] = None,
        aaa_specify_name_policy_password_variable: Optional[str] = None,
        any_connect_eap_authentication_type: Optional[str] = None,
        connection_type_ssl: Optional[bool] = None,
        description: Optional[str] = None,
        enable_certificate_list_check: Optional[bool] = None,
        enable_certificate_list_check_variable: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        ikev2_anti_dos_threshold: Optional[int] = None,
        ikev2_anti_dos_threshold_variable: Optional[str] = None,
        ikev2_local_ike_identity_type: Optional[str] = None,
        ikev2_local_ike_identity_type_variable: Optional[str] = None,
        ikev2_local_ike_identity_value: Optional[str] = None,
        ikev2_local_ike_identity_value_variable: Optional[str] = None,
        ikev2_security_association_lifetime: Optional[int] = None,
        ikev2_security_association_lifetime_variable: Optional[str] = None,
        ipsec_anti_replay_window_size: Optional[int] = None,
        ipsec_anti_replay_window_size_variable: Optional[str] = None,
        ipsec_enable_anti_replay: Optional[bool] = None,
        ipsec_enable_anti_replay_variable: Optional[str] = None,
        ipsec_enable_perfect_foward_secrecy: Optional[bool] = None,
        ipsec_enable_perfect_foward_secrecy_variable: Optional[str] = None,
        ipsec_security_association_lifetime: Optional[int] = None,
        ipsec_security_association_lifetime_variable: Optional[str] = None,
        ipv4_pool_size: Optional[int] = None,
        ipv4_pool_size_variable: Optional[str] = None,
        ipv6_pool_size: Optional[int] = None,
        ipv6_pool_size_variable: Optional[str] = None,
        name: Optional[str] = None,
        psk_authentication_pre_shared_key: Optional[str] = None,
        psk_authentication_pre_shared_key_variable: Optional[str] = None,
        psk_authentication_type: Optional[str] = None,
        psk_authentication_type_variable: Optional[str] = None,
        radius_group_name: Optional[str] = None,
        radius_group_name_variable: Optional[str] = None,
        version: Optional[int] = None) -> SystemRemoteAccessFeaturefunc GetSystemRemoteAccessFeature(ctx *Context, name string, id IDInput, state *SystemRemoteAccessFeatureState, opts ...ResourceOption) (*SystemRemoteAccessFeature, error)public static SystemRemoteAccessFeature Get(string name, Input<string> id, SystemRemoteAccessFeatureState? state, CustomResourceOptions? opts = null)public static SystemRemoteAccessFeature get(String name, Output<String> id, SystemRemoteAccessFeatureState state, CustomResourceOptions options)resources:  _:    type: sdwan:SystemRemoteAccessFeature    get:      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.
- AaaDerive stringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Domain Variable 
- Variable name
- AaaDerive stringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Identity Variable 
- Variable name
- AaaEnable boolAccounting 
- Enable Accounting - Default value: true
- AaaEnable stringAccounting Variable 
- Variable name
- AaaSpecify stringName Policy Name 
- AaaSpecify stringName Policy Name Variable 
- Variable name
- AaaSpecify stringName Policy Password 
- AaaSpecify stringName Policy Password Variable 
- Variable name
- AnyConnect stringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- ConnectionType boolSsl 
- Enabled SSL VPN - Default value: false
- Description string
- The description of the Feature
- EnableCertificate boolList Check 
- Default value: false
 
- Default value: 
- EnableCertificate stringList Check Variable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Ikev2AntiDos intThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- Ikev2AntiDos stringThreshold Variable 
- Variable name
- Ikev2LocalIke stringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- Ikev2LocalIke stringIdentity Type Variable 
- Variable name
- Ikev2LocalIke stringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- Ikev2LocalIke stringIdentity Value Variable 
- Variable name
- Ikev2SecurityAssociation intLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- Ikev2SecurityAssociation stringLifetime Variable 
- Variable name
- IpsecAnti intReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- IpsecAnti stringReplay Window Size Variable 
- Variable name
- IpsecEnable boolAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- IpsecEnable stringAnti Replay Variable 
- Variable name
- IpsecEnable boolPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- IpsecEnable stringPerfect Foward Secrecy Variable 
- Variable name
- IpsecSecurity intAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- IpsecSecurity stringAssociation Lifetime Variable 
- Variable name
- Ipv4PoolSize int
- IPv4 Pool Size - Default value: 1000
- Ipv4PoolSize stringVariable 
- Variable name
- Ipv6PoolSize int
- IPv6 Pool Size - Default value: 1024
- Ipv6PoolSize stringVariable 
- Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- string
- Variable name
- PskAuthentication stringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- PskAuthentication stringType Variable 
- Variable name
- RadiusGroup stringName 
- RadiusGroup stringName Variable 
- Variable name
- Version int
- The version of the Feature
- AaaDerive stringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Domain Variable 
- Variable name
- AaaDerive stringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- AaaDerive stringName From Peer Identity Variable 
- Variable name
- AaaEnable boolAccounting 
- Enable Accounting - Default value: true
- AaaEnable stringAccounting Variable 
- Variable name
- AaaSpecify stringName Policy Name 
- AaaSpecify stringName Policy Name Variable 
- Variable name
- AaaSpecify stringName Policy Password 
- AaaSpecify stringName Policy Password Variable 
- Variable name
- AnyConnect stringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- ConnectionType boolSsl 
- Enabled SSL VPN - Default value: false
- Description string
- The description of the Feature
- EnableCertificate boolList Check 
- Default value: false
 
- Default value: 
- EnableCertificate stringList Check Variable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Ikev2AntiDos intThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- Ikev2AntiDos stringThreshold Variable 
- Variable name
- Ikev2LocalIke stringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- Ikev2LocalIke stringIdentity Type Variable 
- Variable name
- Ikev2LocalIke stringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- Ikev2LocalIke stringIdentity Value Variable 
- Variable name
- Ikev2SecurityAssociation intLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- Ikev2SecurityAssociation stringLifetime Variable 
- Variable name
- IpsecAnti intReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- IpsecAnti stringReplay Window Size Variable 
- Variable name
- IpsecEnable boolAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- IpsecEnable stringAnti Replay Variable 
- Variable name
- IpsecEnable boolPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- IpsecEnable stringPerfect Foward Secrecy Variable 
- Variable name
- IpsecSecurity intAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- IpsecSecurity stringAssociation Lifetime Variable 
- Variable name
- Ipv4PoolSize int
- IPv4 Pool Size - Default value: 1000
- Ipv4PoolSize stringVariable 
- Variable name
- Ipv6PoolSize int
- IPv6 Pool Size - Default value: 1024
- Ipv6PoolSize stringVariable 
- Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- string
- Variable name
- PskAuthentication stringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- PskAuthentication stringType Variable 
- Variable name
- RadiusGroup stringName 
- RadiusGroup stringName Variable 
- Variable name
- Version int
- The version of the Feature
- aaaDerive StringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Domain Variable 
- Variable name
- aaaDerive StringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Identity Variable 
- Variable name
- aaaEnable BooleanAccounting 
- Enable Accounting - Default value: true
- aaaEnable StringAccounting Variable 
- Variable name
- aaaSpecify StringName Policy Name 
- aaaSpecify StringName Policy Name Variable 
- Variable name
- aaaSpecify StringName Policy Password 
- aaaSpecify StringName Policy Password Variable 
- Variable name
- anyConnect StringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connectionType BooleanSsl 
- Enabled SSL VPN - Default value: false
- description String
- The description of the Feature
- enableCertificate BooleanList Check 
- Default value: false
 
- Default value: 
- enableCertificate StringList Check Variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- ikev2AntiDos IntegerThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2AntiDos StringThreshold Variable 
- Variable name
- ikev2LocalIke StringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2LocalIke StringIdentity Type Variable 
- Variable name
- ikev2LocalIke StringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2LocalIke StringIdentity Value Variable 
- Variable name
- ikev2SecurityAssociation IntegerLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2SecurityAssociation StringLifetime Variable 
- Variable name
- ipsecAnti IntegerReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsecAnti StringReplay Window Size Variable 
- Variable name
- ipsecEnable BooleanAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsecEnable StringAnti Replay Variable 
- Variable name
- ipsecEnable BooleanPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsecEnable StringPerfect Foward Secrecy Variable 
- Variable name
- ipsecSecurity IntegerAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsecSecurity StringAssociation Lifetime Variable 
- Variable name
- ipv4PoolSize Integer
- IPv4 Pool Size - Default value: 1000
- ipv4PoolSize StringVariable 
- Variable name
- ipv6PoolSize Integer
- IPv6 Pool Size - Default value: 1024
- ipv6PoolSize StringVariable 
- Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- String
- Variable name
- pskAuthentication StringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- pskAuthentication StringType Variable 
- Variable name
- radiusGroup StringName 
- radiusGroup StringName Variable 
- Variable name
- version Integer
- The version of the Feature
- aaaDerive stringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive stringName From Peer Domain Variable 
- Variable name
- aaaDerive stringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive stringName From Peer Identity Variable 
- Variable name
- aaaEnable booleanAccounting 
- Enable Accounting - Default value: true
- aaaEnable stringAccounting Variable 
- Variable name
- aaaSpecify stringName Policy Name 
- aaaSpecify stringName Policy Name Variable 
- Variable name
- aaaSpecify stringName Policy Password 
- aaaSpecify stringName Policy Password Variable 
- Variable name
- anyConnect stringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connectionType booleanSsl 
- Enabled SSL VPN - Default value: false
- description string
- The description of the Feature
- enableCertificate booleanList Check 
- Default value: false
 
- Default value: 
- enableCertificate stringList Check Variable 
- Variable name
- featureProfile stringId 
- Feature Profile ID
- ikev2AntiDos numberThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2AntiDos stringThreshold Variable 
- Variable name
- ikev2LocalIke stringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2LocalIke stringIdentity Type Variable 
- Variable name
- ikev2LocalIke stringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2LocalIke stringIdentity Value Variable 
- Variable name
- ikev2SecurityAssociation numberLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2SecurityAssociation stringLifetime Variable 
- Variable name
- ipsecAnti numberReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsecAnti stringReplay Window Size Variable 
- Variable name
- ipsecEnable booleanAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsecEnable stringAnti Replay Variable 
- Variable name
- ipsecEnable booleanPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsecEnable stringPerfect Foward Secrecy Variable 
- Variable name
- ipsecSecurity numberAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsecSecurity stringAssociation Lifetime Variable 
- Variable name
- ipv4PoolSize number
- IPv4 Pool Size - Default value: 1000
- ipv4PoolSize stringVariable 
- Variable name
- ipv6PoolSize number
- IPv6 Pool Size - Default value: 1024
- ipv6PoolSize stringVariable 
- Variable name
- name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- string
- Variable name
- pskAuthentication stringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- pskAuthentication stringType Variable 
- Variable name
- radiusGroup stringName 
- radiusGroup stringName Variable 
- Variable name
- version number
- The version of the Feature
- aaa_derive_ strname_ from_ peer_ domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaa_derive_ strname_ from_ peer_ domain_ variable 
- Variable name
- aaa_derive_ strname_ from_ peer_ identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaa_derive_ strname_ from_ peer_ identity_ variable 
- Variable name
- aaa_enable_ boolaccounting 
- Enable Accounting - Default value: true
- aaa_enable_ straccounting_ variable 
- Variable name
- aaa_specify_ strname_ policy_ name 
- aaa_specify_ strname_ policy_ name_ variable 
- Variable name
- aaa_specify_ strname_ policy_ password 
- aaa_specify_ strname_ policy_ password_ variable 
- Variable name
- any_connect_ streap_ authentication_ type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connection_type_ boolssl 
- Enabled SSL VPN - Default value: false
- description str
- The description of the Feature
- enable_certificate_ boollist_ check 
- Default value: false
 
- Default value: 
- enable_certificate_ strlist_ check_ variable 
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- ikev2_anti_ intdos_ threshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2_anti_ strdos_ threshold_ variable 
- Variable name
- ikev2_local_ strike_ identity_ type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2_local_ strike_ identity_ type_ variable 
- Variable name
- ikev2_local_ strike_ identity_ value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2_local_ strike_ identity_ value_ variable 
- Variable name
- ikev2_security_ intassociation_ lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2_security_ strassociation_ lifetime_ variable 
- Variable name
- ipsec_anti_ intreplay_ window_ size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsec_anti_ strreplay_ window_ size_ variable 
- Variable name
- ipsec_enable_ boolanti_ replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsec_enable_ stranti_ replay_ variable 
- Variable name
- ipsec_enable_ boolperfect_ foward_ secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsec_enable_ strperfect_ foward_ secrecy_ variable 
- Variable name
- ipsec_security_ intassociation_ lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsec_security_ strassociation_ lifetime_ variable 
- Variable name
- ipv4_pool_ intsize 
- IPv4 Pool Size - Default value: 1000
- ipv4_pool_ strsize_ variable 
- Variable name
- ipv6_pool_ intsize 
- IPv6 Pool Size - Default value: 1024
- ipv6_pool_ strsize_ variable 
- Variable name
- name str
- The name of the Feature
- str
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- str
- Variable name
- psk_authentication_ strtype 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- psk_authentication_ strtype_ variable 
- Variable name
- radius_group_ strname 
- radius_group_ strname_ variable 
- Variable name
- version int
- The version of the Feature
- aaaDerive StringName From Peer Domain 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Domain Variable 
- Variable name
- aaaDerive StringName From Peer Identity 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- aaaDerive StringName From Peer Identity Variable 
- Variable name
- aaaEnable BooleanAccounting 
- Enable Accounting - Default value: true
- aaaEnable StringAccounting Variable 
- Variable name
- aaaSpecify StringName Policy Name 
- aaaSpecify StringName Policy Name Variable 
- Variable name
- aaaSpecify StringName Policy Password 
- aaaSpecify StringName Policy Password Variable 
- Variable name
- anyConnect StringEap Authentication Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:user,device
- connectionType BooleanSsl 
- Enabled SSL VPN - Default value: false
- description String
- The description of the Feature
- enableCertificate BooleanList Check 
- Default value: false
 
- Default value: 
- enableCertificate StringList Check Variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- ikev2AntiDos NumberThreshold 
- Anti-DOS Threshold, Attribute conditional on connection_type_sslbeing equal tofalse- Range:10-1000- Default value:100
- ikev2AntiDos StringThreshold Variable 
- Variable name
- ikev2LocalIke StringIdentity Type 
- , Attribute conditional on connection_type_sslbeing equal tofalse- Choices:EMAIL,FQDN,KEYID,IPv4 ADDRESS,IPv6 ADDRESS
- ikev2LocalIke StringIdentity Type Variable 
- Variable name
- ikev2LocalIke StringIdentity Value 
- , Attribute conditional on connection_type_sslbeing equal tofalse
- ikev2LocalIke StringIdentity Value Variable 
- Variable name
- ikev2SecurityAssociation NumberLifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:86400
- ikev2SecurityAssociation StringLifetime Variable 
- Variable name
- ipsecAnti NumberReplay Window Size 
- security Association Lifetime, Attribute conditional on ipsec_enable_anti_replaybeing equal totrue- Default value:64
- ipsecAnti StringReplay Window Size Variable 
- Variable name
- ipsecEnable BooleanAnti Replay 
- Enable Anti-Replay, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:true
- ipsecEnable StringAnti Replay Variable 
- Variable name
- ipsecEnable BooleanPerfect Foward Secrecy 
- security Association Lifetime, Attribute conditional on connection_type_sslbeing equal tofalse- Default value:false
- ipsecEnable StringPerfect Foward Secrecy Variable 
- Variable name
- ipsecSecurity NumberAssociation Lifetime 
- Security Association Lifetime in Seconds, Attribute conditional on connection_type_sslbeing equal tofalse- Range:3600-86400- Default value:3600
- ipsecSecurity StringAssociation Lifetime Variable 
- Variable name
- ipv4PoolSize Number
- IPv4 Pool Size - Default value: 1000
- ipv4PoolSize StringVariable 
- Variable name
- ipv6PoolSize Number
- IPv6 Pool Size - Default value: 1024
- ipv6PoolSize StringVariable 
- Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on psk_authentication_typebeing equal togroup
- String
- Variable name
- pskAuthentication StringType 
- PSK Selection, Attribute conditional on connection_type_sslbeing equal tofalse- Choices:aaa,group
- pskAuthentication StringType Variable 
- Variable name
- radiusGroup StringName 
- radiusGroup StringName Variable 
- Variable name
- version Number
- The version of the Feature
Import
Expected import identifier with the format: “system_remote_access_feature_id,feature_profile_id”
$ pulumi import sdwan:index/systemRemoteAccessFeature:SystemRemoteAccessFeature 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.
