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

sdwan.SystemRemoteAccessFeature

Explore with Pulumi AI

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

    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,
                                  any_connect_eap_authentication_type: Optional[str] = None,
                                  radius_group_name: Optional[str] = None,
                                  ikev2_local_ike_identity_value: Optional[str] = None,
                                  aaa_specify_name_policy_password_variable: Optional[str] = None,
                                  aaa_enable_accounting: Optional[bool] = None,
                                  ikev2_security_association_lifetime: Optional[int] = None,
                                  aaa_specify_name_policy_name: Optional[str] = None,
                                  ipsec_anti_replay_window_size: Optional[int] = None,
                                  aaa_specify_name_policy_password: Optional[str] = None,
                                  ikev2_security_association_lifetime_variable: Optional[str] = None,
                                  aaa_derive_name_from_peer_identity: 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,
                                  aaa_derive_name_from_peer_domain: Optional[str] = None,
                                  ikev2_local_ike_identity_value_variable: Optional[str] = None,
                                  aaa_enable_accounting_variable: Optional[str] = None,
                                  aaa_derive_name_from_peer_identity_variable: Optional[str] = None,
                                  aaa_specify_name_policy_name_variable: Optional[str] = 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()
    {
        AnyConnectEapAuthenticationType = "string",
        RadiusGroupName = "string",
        Ikev2LocalIkeIdentityValue = "string",
        AaaSpecifyNamePolicyPasswordVariable = "string",
        AaaEnableAccounting = false,
        Ikev2SecurityAssociationLifetime = 0,
        AaaSpecifyNamePolicyName = "string",
        IpsecAntiReplayWindowSize = 0,
        AaaSpecifyNamePolicyPassword = "string",
        Ikev2SecurityAssociationLifetimeVariable = "string",
        AaaDeriveNameFromPeerIdentity = "string",
        ConnectionTypeSsl = false,
        Description = "string",
        EnableCertificateListCheck = false,
        EnableCertificateListCheckVariable = "string",
        FeatureProfileId = "string",
        Ikev2AntiDosThreshold = 0,
        Ikev2AntiDosThresholdVariable = "string",
        Ikev2LocalIkeIdentityType = "string",
        Ikev2LocalIkeIdentityTypeVariable = "string",
        AaaDeriveNameFromPeerDomain = "string",
        Ikev2LocalIkeIdentityValueVariable = "string",
        AaaEnableAccountingVariable = "string",
        AaaDeriveNameFromPeerIdentityVariable = "string",
        AaaSpecifyNamePolicyNameVariable = "string",
        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{
    	AnyConnectEapAuthenticationType:          pulumi.String("string"),
    	RadiusGroupName:                          pulumi.String("string"),
    	Ikev2LocalIkeIdentityValue:               pulumi.String("string"),
    	AaaSpecifyNamePolicyPasswordVariable:     pulumi.String("string"),
    	AaaEnableAccounting:                      pulumi.Bool(false),
    	Ikev2SecurityAssociationLifetime:         pulumi.Int(0),
    	AaaSpecifyNamePolicyName:                 pulumi.String("string"),
    	IpsecAntiReplayWindowSize:                pulumi.Int(0),
    	AaaSpecifyNamePolicyPassword:             pulumi.String("string"),
    	Ikev2SecurityAssociationLifetimeVariable: pulumi.String("string"),
    	AaaDeriveNameFromPeerIdentity:            pulumi.String("string"),
    	ConnectionTypeSsl:                        pulumi.Bool(false),
    	Description:                              pulumi.String("string"),
    	EnableCertificateListCheck:               pulumi.Bool(false),
    	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"),
    	Ikev2LocalIkeIdentityValueVariable:       pulumi.String("string"),
    	AaaEnableAccountingVariable:              pulumi.String("string"),
    	AaaDeriveNameFromPeerIdentityVariable:    pulumi.String("string"),
    	AaaSpecifyNamePolicyNameVariable:         pulumi.String("string"),
    	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()
        .anyConnectEapAuthenticationType("string")
        .radiusGroupName("string")
        .ikev2LocalIkeIdentityValue("string")
        .aaaSpecifyNamePolicyPasswordVariable("string")
        .aaaEnableAccounting(false)
        .ikev2SecurityAssociationLifetime(0)
        .aaaSpecifyNamePolicyName("string")
        .ipsecAntiReplayWindowSize(0)
        .aaaSpecifyNamePolicyPassword("string")
        .ikev2SecurityAssociationLifetimeVariable("string")
        .aaaDeriveNameFromPeerIdentity("string")
        .connectionTypeSsl(false)
        .description("string")
        .enableCertificateListCheck(false)
        .enableCertificateListCheckVariable("string")
        .featureProfileId("string")
        .ikev2AntiDosThreshold(0)
        .ikev2AntiDosThresholdVariable("string")
        .ikev2LocalIkeIdentityType("string")
        .ikev2LocalIkeIdentityTypeVariable("string")
        .aaaDeriveNameFromPeerDomain("string")
        .ikev2LocalIkeIdentityValueVariable("string")
        .aaaEnableAccountingVariable("string")
        .aaaDeriveNameFromPeerIdentityVariable("string")
        .aaaSpecifyNamePolicyNameVariable("string")
        .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",
        any_connect_eap_authentication_type="string",
        radius_group_name="string",
        ikev2_local_ike_identity_value="string",
        aaa_specify_name_policy_password_variable="string",
        aaa_enable_accounting=False,
        ikev2_security_association_lifetime=0,
        aaa_specify_name_policy_name="string",
        ipsec_anti_replay_window_size=0,
        aaa_specify_name_policy_password="string",
        ikev2_security_association_lifetime_variable="string",
        aaa_derive_name_from_peer_identity="string",
        connection_type_ssl=False,
        description="string",
        enable_certificate_list_check=False,
        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",
        ikev2_local_ike_identity_value_variable="string",
        aaa_enable_accounting_variable="string",
        aaa_derive_name_from_peer_identity_variable="string",
        aaa_specify_name_policy_name_variable="string",
        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", {
        anyConnectEapAuthenticationType: "string",
        radiusGroupName: "string",
        ikev2LocalIkeIdentityValue: "string",
        aaaSpecifyNamePolicyPasswordVariable: "string",
        aaaEnableAccounting: false,
        ikev2SecurityAssociationLifetime: 0,
        aaaSpecifyNamePolicyName: "string",
        ipsecAntiReplayWindowSize: 0,
        aaaSpecifyNamePolicyPassword: "string",
        ikev2SecurityAssociationLifetimeVariable: "string",
        aaaDeriveNameFromPeerIdentity: "string",
        connectionTypeSsl: false,
        description: "string",
        enableCertificateListCheck: false,
        enableCertificateListCheckVariable: "string",
        featureProfileId: "string",
        ikev2AntiDosThreshold: 0,
        ikev2AntiDosThresholdVariable: "string",
        ikev2LocalIkeIdentityType: "string",
        ikev2LocalIkeIdentityTypeVariable: "string",
        aaaDeriveNameFromPeerDomain: "string",
        ikev2LocalIkeIdentityValueVariable: "string",
        aaaEnableAccountingVariable: "string",
        aaaDeriveNameFromPeerIdentityVariable: "string",
        aaaSpecifyNamePolicyNameVariable: "string",
        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

    The SystemRemoteAccessFeature resource accepts the following input properties:

    AnyConnectEapAuthenticationType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    RadiusGroupName string
    AaaDeriveNameFromPeerDomain string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerDomainVariable string
    Variable name
    AaaDeriveNameFromPeerIdentity string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerIdentityVariable string
    Variable name
    AaaEnableAccounting bool
    Enable Accounting - Default value: true
    AaaEnableAccountingVariable string
    Variable name
    AaaSpecifyNamePolicyName string
    AaaSpecifyNamePolicyNameVariable string
    Variable name
    AaaSpecifyNamePolicyPassword string
    AaaSpecifyNamePolicyPasswordVariable string
    Variable name
    ConnectionTypeSsl bool
    Enabled SSL VPN - Default value: false
    Description string
    The description of the Feature
    EnableCertificateListCheck bool
    • Default value: false
    EnableCertificateListCheckVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Ikev2AntiDosThreshold int
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    Ikev2AntiDosThresholdVariable string
    Variable name
    Ikev2LocalIkeIdentityType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    Ikev2LocalIkeIdentityTypeVariable string
    Variable name
    Ikev2LocalIkeIdentityValue string
    , Attribute conditional on connection_type_ssl being equal to false
    Ikev2LocalIkeIdentityValueVariable string
    Variable name
    Ikev2SecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    Ikev2SecurityAssociationLifetimeVariable string
    Variable name
    IpsecAntiReplayWindowSize int
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    IpsecAntiReplayWindowSizeVariable string
    Variable name
    IpsecEnableAntiReplay bool
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    IpsecEnableAntiReplayVariable string
    Variable name
    IpsecEnablePerfectFowardSecrecy bool
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    IpsecEnablePerfectFowardSecrecyVariable string
    Variable name
    IpsecSecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    IpsecSecurityAssociationLifetimeVariable string
    Variable name
    Ipv4PoolSize int
    IPv4 Pool Size - Default value: 1000
    Ipv4PoolSizeVariable string
    Variable name
    Ipv6PoolSize int
    IPv6 Pool Size - Default value: 1024
    Ipv6PoolSizeVariable string
    Variable name
    Name string
    The name of the Feature
    PskAuthenticationPreSharedKey string
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    PskAuthenticationPreSharedKeyVariable string
    Variable name
    PskAuthenticationType string
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    PskAuthenticationTypeVariable string
    Variable name
    RadiusGroupNameVariable string
    Variable name
    AnyConnectEapAuthenticationType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    RadiusGroupName string
    AaaDeriveNameFromPeerDomain string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerDomainVariable string
    Variable name
    AaaDeriveNameFromPeerIdentity string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerIdentityVariable string
    Variable name
    AaaEnableAccounting bool
    Enable Accounting - Default value: true
    AaaEnableAccountingVariable string
    Variable name
    AaaSpecifyNamePolicyName string
    AaaSpecifyNamePolicyNameVariable string
    Variable name
    AaaSpecifyNamePolicyPassword string
    AaaSpecifyNamePolicyPasswordVariable string
    Variable name
    ConnectionTypeSsl bool
    Enabled SSL VPN - Default value: false
    Description string
    The description of the Feature
    EnableCertificateListCheck bool
    • Default value: false
    EnableCertificateListCheckVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Ikev2AntiDosThreshold int
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    Ikev2AntiDosThresholdVariable string
    Variable name
    Ikev2LocalIkeIdentityType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    Ikev2LocalIkeIdentityTypeVariable string
    Variable name
    Ikev2LocalIkeIdentityValue string
    , Attribute conditional on connection_type_ssl being equal to false
    Ikev2LocalIkeIdentityValueVariable string
    Variable name
    Ikev2SecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    Ikev2SecurityAssociationLifetimeVariable string
    Variable name
    IpsecAntiReplayWindowSize int
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    IpsecAntiReplayWindowSizeVariable string
    Variable name
    IpsecEnableAntiReplay bool
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    IpsecEnableAntiReplayVariable string
    Variable name
    IpsecEnablePerfectFowardSecrecy bool
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    IpsecEnablePerfectFowardSecrecyVariable string
    Variable name
    IpsecSecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    IpsecSecurityAssociationLifetimeVariable string
    Variable name
    Ipv4PoolSize int
    IPv4 Pool Size - Default value: 1000
    Ipv4PoolSizeVariable string
    Variable name
    Ipv6PoolSize int
    IPv6 Pool Size - Default value: 1024
    Ipv6PoolSizeVariable string
    Variable name
    Name string
    The name of the Feature
    PskAuthenticationPreSharedKey string
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    PskAuthenticationPreSharedKeyVariable string
    Variable name
    PskAuthenticationType string
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    PskAuthenticationTypeVariable string
    Variable name
    RadiusGroupNameVariable string
    Variable name
    anyConnectEapAuthenticationType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    radiusGroupName String
    aaaDeriveNameFromPeerDomain String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerDomainVariable String
    Variable name
    aaaDeriveNameFromPeerIdentity String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerIdentityVariable String
    Variable name
    aaaEnableAccounting Boolean
    Enable Accounting - Default value: true
    aaaEnableAccountingVariable String
    Variable name
    aaaSpecifyNamePolicyName String
    aaaSpecifyNamePolicyNameVariable String
    Variable name
    aaaSpecifyNamePolicyPassword String
    aaaSpecifyNamePolicyPasswordVariable String
    Variable name
    connectionTypeSsl Boolean
    Enabled SSL VPN - Default value: false
    description String
    The description of the Feature
    enableCertificateListCheck Boolean
    • Default value: false
    enableCertificateListCheckVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    ikev2AntiDosThreshold Integer
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2AntiDosThresholdVariable String
    Variable name
    ikev2LocalIkeIdentityType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2LocalIkeIdentityTypeVariable String
    Variable name
    ikev2LocalIkeIdentityValue String
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2LocalIkeIdentityValueVariable String
    Variable name
    ikev2SecurityAssociationLifetime Integer
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2SecurityAssociationLifetimeVariable String
    Variable name
    ipsecAntiReplayWindowSize Integer
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsecAntiReplayWindowSizeVariable String
    Variable name
    ipsecEnableAntiReplay Boolean
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsecEnableAntiReplayVariable String
    Variable name
    ipsecEnablePerfectFowardSecrecy Boolean
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsecEnablePerfectFowardSecrecyVariable String
    Variable name
    ipsecSecurityAssociationLifetime Integer
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsecSecurityAssociationLifetimeVariable String
    Variable name
    ipv4PoolSize Integer
    IPv4 Pool Size - Default value: 1000
    ipv4PoolSizeVariable String
    Variable name
    ipv6PoolSize Integer
    IPv6 Pool Size - Default value: 1024
    ipv6PoolSizeVariable String
    Variable name
    name String
    The name of the Feature
    pskAuthenticationPreSharedKey String
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    pskAuthenticationPreSharedKeyVariable String
    Variable name
    pskAuthenticationType String
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    pskAuthenticationTypeVariable String
    Variable name
    radiusGroupNameVariable String
    Variable name
    anyConnectEapAuthenticationType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    radiusGroupName string
    aaaDeriveNameFromPeerDomain string
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerDomainVariable string
    Variable name
    aaaDeriveNameFromPeerIdentity string
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerIdentityVariable string
    Variable name
    aaaEnableAccounting boolean
    Enable Accounting - Default value: true
    aaaEnableAccountingVariable string
    Variable name
    aaaSpecifyNamePolicyName string
    aaaSpecifyNamePolicyNameVariable string
    Variable name
    aaaSpecifyNamePolicyPassword string
    aaaSpecifyNamePolicyPasswordVariable string
    Variable name
    connectionTypeSsl boolean
    Enabled SSL VPN - Default value: false
    description string
    The description of the Feature
    enableCertificateListCheck boolean
    • Default value: false
    enableCertificateListCheckVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    ikev2AntiDosThreshold number
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2AntiDosThresholdVariable string
    Variable name
    ikev2LocalIkeIdentityType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2LocalIkeIdentityTypeVariable string
    Variable name
    ikev2LocalIkeIdentityValue string
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2LocalIkeIdentityValueVariable string
    Variable name
    ikev2SecurityAssociationLifetime number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2SecurityAssociationLifetimeVariable string
    Variable name
    ipsecAntiReplayWindowSize number
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsecAntiReplayWindowSizeVariable string
    Variable name
    ipsecEnableAntiReplay boolean
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsecEnableAntiReplayVariable string
    Variable name
    ipsecEnablePerfectFowardSecrecy boolean
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsecEnablePerfectFowardSecrecyVariable string
    Variable name
    ipsecSecurityAssociationLifetime number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsecSecurityAssociationLifetimeVariable string
    Variable name
    ipv4PoolSize number
    IPv4 Pool Size - Default value: 1000
    ipv4PoolSizeVariable string
    Variable name
    ipv6PoolSize number
    IPv6 Pool Size - Default value: 1024
    ipv6PoolSizeVariable string
    Variable name
    name string
    The name of the Feature
    pskAuthenticationPreSharedKey string
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    pskAuthenticationPreSharedKeyVariable string
    Variable name
    pskAuthenticationType string
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    pskAuthenticationTypeVariable string
    Variable name
    radiusGroupNameVariable string
    Variable name
    any_connect_eap_authentication_type str
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    radius_group_name str
    aaa_derive_name_from_peer_domain str
    , Attribute conditional on connection_type_ssl being equal to false
    aaa_derive_name_from_peer_domain_variable str
    Variable name
    aaa_derive_name_from_peer_identity str
    , Attribute conditional on connection_type_ssl being equal to false
    aaa_derive_name_from_peer_identity_variable str
    Variable name
    aaa_enable_accounting bool
    Enable Accounting - Default value: true
    aaa_enable_accounting_variable str
    Variable name
    aaa_specify_name_policy_name str
    aaa_specify_name_policy_name_variable str
    Variable name
    aaa_specify_name_policy_password str
    aaa_specify_name_policy_password_variable str
    Variable name
    connection_type_ssl bool
    Enabled SSL VPN - Default value: false
    description str
    The description of the Feature
    enable_certificate_list_check bool
    • Default value: false
    enable_certificate_list_check_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    ikev2_anti_dos_threshold int
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2_anti_dos_threshold_variable str
    Variable name
    ikev2_local_ike_identity_type str
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2_local_ike_identity_type_variable str
    Variable name
    ikev2_local_ike_identity_value str
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2_local_ike_identity_value_variable str
    Variable name
    ikev2_security_association_lifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2_security_association_lifetime_variable str
    Variable name
    ipsec_anti_replay_window_size int
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsec_anti_replay_window_size_variable str
    Variable name
    ipsec_enable_anti_replay bool
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsec_enable_anti_replay_variable str
    Variable name
    ipsec_enable_perfect_foward_secrecy bool
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsec_enable_perfect_foward_secrecy_variable str
    Variable name
    ipsec_security_association_lifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsec_security_association_lifetime_variable str
    Variable name
    ipv4_pool_size int
    IPv4 Pool Size - Default value: 1000
    ipv4_pool_size_variable str
    Variable name
    ipv6_pool_size int
    IPv6 Pool Size - Default value: 1024
    ipv6_pool_size_variable str
    Variable name
    name str
    The name of the Feature
    psk_authentication_pre_shared_key str
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    psk_authentication_pre_shared_key_variable str
    Variable name
    psk_authentication_type str
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    psk_authentication_type_variable str
    Variable name
    radius_group_name_variable str
    Variable name
    anyConnectEapAuthenticationType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    radiusGroupName String
    aaaDeriveNameFromPeerDomain String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerDomainVariable String
    Variable name
    aaaDeriveNameFromPeerIdentity String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerIdentityVariable String
    Variable name
    aaaEnableAccounting Boolean
    Enable Accounting - Default value: true
    aaaEnableAccountingVariable String
    Variable name
    aaaSpecifyNamePolicyName String
    aaaSpecifyNamePolicyNameVariable String
    Variable name
    aaaSpecifyNamePolicyPassword String
    aaaSpecifyNamePolicyPasswordVariable String
    Variable name
    connectionTypeSsl Boolean
    Enabled SSL VPN - Default value: false
    description String
    The description of the Feature
    enableCertificateListCheck Boolean
    • Default value: false
    enableCertificateListCheckVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    ikev2AntiDosThreshold Number
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2AntiDosThresholdVariable String
    Variable name
    ikev2LocalIkeIdentityType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2LocalIkeIdentityTypeVariable String
    Variable name
    ikev2LocalIkeIdentityValue String
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2LocalIkeIdentityValueVariable String
    Variable name
    ikev2SecurityAssociationLifetime Number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2SecurityAssociationLifetimeVariable String
    Variable name
    ipsecAntiReplayWindowSize Number
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsecAntiReplayWindowSizeVariable String
    Variable name
    ipsecEnableAntiReplay Boolean
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsecEnableAntiReplayVariable String
    Variable name
    ipsecEnablePerfectFowardSecrecy Boolean
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsecEnablePerfectFowardSecrecyVariable String
    Variable name
    ipsecSecurityAssociationLifetime Number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsecSecurityAssociationLifetimeVariable String
    Variable name
    ipv4PoolSize Number
    IPv4 Pool Size - Default value: 1000
    ipv4PoolSizeVariable String
    Variable name
    ipv6PoolSize Number
    IPv6 Pool Size - Default value: 1024
    ipv6PoolSizeVariable String
    Variable name
    name String
    The name of the Feature
    pskAuthenticationPreSharedKey String
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    pskAuthenticationPreSharedKeyVariable String
    Variable name
    pskAuthenticationType String
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    pskAuthenticationTypeVariable String
    Variable name
    radiusGroupNameVariable String
    Variable name

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    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) -> SystemRemoteAccessFeature
    func 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AaaDeriveNameFromPeerDomain string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerDomainVariable string
    Variable name
    AaaDeriveNameFromPeerIdentity string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerIdentityVariable string
    Variable name
    AaaEnableAccounting bool
    Enable Accounting - Default value: true
    AaaEnableAccountingVariable string
    Variable name
    AaaSpecifyNamePolicyName string
    AaaSpecifyNamePolicyNameVariable string
    Variable name
    AaaSpecifyNamePolicyPassword string
    AaaSpecifyNamePolicyPasswordVariable string
    Variable name
    AnyConnectEapAuthenticationType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    ConnectionTypeSsl bool
    Enabled SSL VPN - Default value: false
    Description string
    The description of the Feature
    EnableCertificateListCheck bool
    • Default value: false
    EnableCertificateListCheckVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Ikev2AntiDosThreshold int
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    Ikev2AntiDosThresholdVariable string
    Variable name
    Ikev2LocalIkeIdentityType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    Ikev2LocalIkeIdentityTypeVariable string
    Variable name
    Ikev2LocalIkeIdentityValue string
    , Attribute conditional on connection_type_ssl being equal to false
    Ikev2LocalIkeIdentityValueVariable string
    Variable name
    Ikev2SecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    Ikev2SecurityAssociationLifetimeVariable string
    Variable name
    IpsecAntiReplayWindowSize int
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    IpsecAntiReplayWindowSizeVariable string
    Variable name
    IpsecEnableAntiReplay bool
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    IpsecEnableAntiReplayVariable string
    Variable name
    IpsecEnablePerfectFowardSecrecy bool
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    IpsecEnablePerfectFowardSecrecyVariable string
    Variable name
    IpsecSecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    IpsecSecurityAssociationLifetimeVariable string
    Variable name
    Ipv4PoolSize int
    IPv4 Pool Size - Default value: 1000
    Ipv4PoolSizeVariable string
    Variable name
    Ipv6PoolSize int
    IPv6 Pool Size - Default value: 1024
    Ipv6PoolSizeVariable string
    Variable name
    Name string
    The name of the Feature
    PskAuthenticationPreSharedKey string
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    PskAuthenticationPreSharedKeyVariable string
    Variable name
    PskAuthenticationType string
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    PskAuthenticationTypeVariable string
    Variable name
    RadiusGroupName string
    RadiusGroupNameVariable string
    Variable name
    Version int
    The version of the Feature
    AaaDeriveNameFromPeerDomain string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerDomainVariable string
    Variable name
    AaaDeriveNameFromPeerIdentity string
    , Attribute conditional on connection_type_ssl being equal to false
    AaaDeriveNameFromPeerIdentityVariable string
    Variable name
    AaaEnableAccounting bool
    Enable Accounting - Default value: true
    AaaEnableAccountingVariable string
    Variable name
    AaaSpecifyNamePolicyName string
    AaaSpecifyNamePolicyNameVariable string
    Variable name
    AaaSpecifyNamePolicyPassword string
    AaaSpecifyNamePolicyPasswordVariable string
    Variable name
    AnyConnectEapAuthenticationType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    ConnectionTypeSsl bool
    Enabled SSL VPN - Default value: false
    Description string
    The description of the Feature
    EnableCertificateListCheck bool
    • Default value: false
    EnableCertificateListCheckVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Ikev2AntiDosThreshold int
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    Ikev2AntiDosThresholdVariable string
    Variable name
    Ikev2LocalIkeIdentityType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    Ikev2LocalIkeIdentityTypeVariable string
    Variable name
    Ikev2LocalIkeIdentityValue string
    , Attribute conditional on connection_type_ssl being equal to false
    Ikev2LocalIkeIdentityValueVariable string
    Variable name
    Ikev2SecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    Ikev2SecurityAssociationLifetimeVariable string
    Variable name
    IpsecAntiReplayWindowSize int
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    IpsecAntiReplayWindowSizeVariable string
    Variable name
    IpsecEnableAntiReplay bool
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    IpsecEnableAntiReplayVariable string
    Variable name
    IpsecEnablePerfectFowardSecrecy bool
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    IpsecEnablePerfectFowardSecrecyVariable string
    Variable name
    IpsecSecurityAssociationLifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    IpsecSecurityAssociationLifetimeVariable string
    Variable name
    Ipv4PoolSize int
    IPv4 Pool Size - Default value: 1000
    Ipv4PoolSizeVariable string
    Variable name
    Ipv6PoolSize int
    IPv6 Pool Size - Default value: 1024
    Ipv6PoolSizeVariable string
    Variable name
    Name string
    The name of the Feature
    PskAuthenticationPreSharedKey string
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    PskAuthenticationPreSharedKeyVariable string
    Variable name
    PskAuthenticationType string
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    PskAuthenticationTypeVariable string
    Variable name
    RadiusGroupName string
    RadiusGroupNameVariable string
    Variable name
    Version int
    The version of the Feature
    aaaDeriveNameFromPeerDomain String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerDomainVariable String
    Variable name
    aaaDeriveNameFromPeerIdentity String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerIdentityVariable String
    Variable name
    aaaEnableAccounting Boolean
    Enable Accounting - Default value: true
    aaaEnableAccountingVariable String
    Variable name
    aaaSpecifyNamePolicyName String
    aaaSpecifyNamePolicyNameVariable String
    Variable name
    aaaSpecifyNamePolicyPassword String
    aaaSpecifyNamePolicyPasswordVariable String
    Variable name
    anyConnectEapAuthenticationType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    connectionTypeSsl Boolean
    Enabled SSL VPN - Default value: false
    description String
    The description of the Feature
    enableCertificateListCheck Boolean
    • Default value: false
    enableCertificateListCheckVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    ikev2AntiDosThreshold Integer
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2AntiDosThresholdVariable String
    Variable name
    ikev2LocalIkeIdentityType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2LocalIkeIdentityTypeVariable String
    Variable name
    ikev2LocalIkeIdentityValue String
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2LocalIkeIdentityValueVariable String
    Variable name
    ikev2SecurityAssociationLifetime Integer
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2SecurityAssociationLifetimeVariable String
    Variable name
    ipsecAntiReplayWindowSize Integer
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsecAntiReplayWindowSizeVariable String
    Variable name
    ipsecEnableAntiReplay Boolean
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsecEnableAntiReplayVariable String
    Variable name
    ipsecEnablePerfectFowardSecrecy Boolean
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsecEnablePerfectFowardSecrecyVariable String
    Variable name
    ipsecSecurityAssociationLifetime Integer
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsecSecurityAssociationLifetimeVariable String
    Variable name
    ipv4PoolSize Integer
    IPv4 Pool Size - Default value: 1000
    ipv4PoolSizeVariable String
    Variable name
    ipv6PoolSize Integer
    IPv6 Pool Size - Default value: 1024
    ipv6PoolSizeVariable String
    Variable name
    name String
    The name of the Feature
    pskAuthenticationPreSharedKey String
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    pskAuthenticationPreSharedKeyVariable String
    Variable name
    pskAuthenticationType String
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    pskAuthenticationTypeVariable String
    Variable name
    radiusGroupName String
    radiusGroupNameVariable String
    Variable name
    version Integer
    The version of the Feature
    aaaDeriveNameFromPeerDomain string
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerDomainVariable string
    Variable name
    aaaDeriveNameFromPeerIdentity string
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerIdentityVariable string
    Variable name
    aaaEnableAccounting boolean
    Enable Accounting - Default value: true
    aaaEnableAccountingVariable string
    Variable name
    aaaSpecifyNamePolicyName string
    aaaSpecifyNamePolicyNameVariable string
    Variable name
    aaaSpecifyNamePolicyPassword string
    aaaSpecifyNamePolicyPasswordVariable string
    Variable name
    anyConnectEapAuthenticationType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    connectionTypeSsl boolean
    Enabled SSL VPN - Default value: false
    description string
    The description of the Feature
    enableCertificateListCheck boolean
    • Default value: false
    enableCertificateListCheckVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    ikev2AntiDosThreshold number
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2AntiDosThresholdVariable string
    Variable name
    ikev2LocalIkeIdentityType string
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2LocalIkeIdentityTypeVariable string
    Variable name
    ikev2LocalIkeIdentityValue string
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2LocalIkeIdentityValueVariable string
    Variable name
    ikev2SecurityAssociationLifetime number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2SecurityAssociationLifetimeVariable string
    Variable name
    ipsecAntiReplayWindowSize number
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsecAntiReplayWindowSizeVariable string
    Variable name
    ipsecEnableAntiReplay boolean
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsecEnableAntiReplayVariable string
    Variable name
    ipsecEnablePerfectFowardSecrecy boolean
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsecEnablePerfectFowardSecrecyVariable string
    Variable name
    ipsecSecurityAssociationLifetime number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsecSecurityAssociationLifetimeVariable string
    Variable name
    ipv4PoolSize number
    IPv4 Pool Size - Default value: 1000
    ipv4PoolSizeVariable string
    Variable name
    ipv6PoolSize number
    IPv6 Pool Size - Default value: 1024
    ipv6PoolSizeVariable string
    Variable name
    name string
    The name of the Feature
    pskAuthenticationPreSharedKey string
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    pskAuthenticationPreSharedKeyVariable string
    Variable name
    pskAuthenticationType string
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    pskAuthenticationTypeVariable string
    Variable name
    radiusGroupName string
    radiusGroupNameVariable string
    Variable name
    version number
    The version of the Feature
    aaa_derive_name_from_peer_domain str
    , Attribute conditional on connection_type_ssl being equal to false
    aaa_derive_name_from_peer_domain_variable str
    Variable name
    aaa_derive_name_from_peer_identity str
    , Attribute conditional on connection_type_ssl being equal to false
    aaa_derive_name_from_peer_identity_variable str
    Variable name
    aaa_enable_accounting bool
    Enable Accounting - Default value: true
    aaa_enable_accounting_variable str
    Variable name
    aaa_specify_name_policy_name str
    aaa_specify_name_policy_name_variable str
    Variable name
    aaa_specify_name_policy_password str
    aaa_specify_name_policy_password_variable str
    Variable name
    any_connect_eap_authentication_type str
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    connection_type_ssl bool
    Enabled SSL VPN - Default value: false
    description str
    The description of the Feature
    enable_certificate_list_check bool
    • Default value: false
    enable_certificate_list_check_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    ikev2_anti_dos_threshold int
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2_anti_dos_threshold_variable str
    Variable name
    ikev2_local_ike_identity_type str
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2_local_ike_identity_type_variable str
    Variable name
    ikev2_local_ike_identity_value str
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2_local_ike_identity_value_variable str
    Variable name
    ikev2_security_association_lifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2_security_association_lifetime_variable str
    Variable name
    ipsec_anti_replay_window_size int
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsec_anti_replay_window_size_variable str
    Variable name
    ipsec_enable_anti_replay bool
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsec_enable_anti_replay_variable str
    Variable name
    ipsec_enable_perfect_foward_secrecy bool
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsec_enable_perfect_foward_secrecy_variable str
    Variable name
    ipsec_security_association_lifetime int
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsec_security_association_lifetime_variable str
    Variable name
    ipv4_pool_size int
    IPv4 Pool Size - Default value: 1000
    ipv4_pool_size_variable str
    Variable name
    ipv6_pool_size int
    IPv6 Pool Size - Default value: 1024
    ipv6_pool_size_variable str
    Variable name
    name str
    The name of the Feature
    psk_authentication_pre_shared_key str
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    psk_authentication_pre_shared_key_variable str
    Variable name
    psk_authentication_type str
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    psk_authentication_type_variable str
    Variable name
    radius_group_name str
    radius_group_name_variable str
    Variable name
    version int
    The version of the Feature
    aaaDeriveNameFromPeerDomain String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerDomainVariable String
    Variable name
    aaaDeriveNameFromPeerIdentity String
    , Attribute conditional on connection_type_ssl being equal to false
    aaaDeriveNameFromPeerIdentityVariable String
    Variable name
    aaaEnableAccounting Boolean
    Enable Accounting - Default value: true
    aaaEnableAccountingVariable String
    Variable name
    aaaSpecifyNamePolicyName String
    aaaSpecifyNamePolicyNameVariable String
    Variable name
    aaaSpecifyNamePolicyPassword String
    aaaSpecifyNamePolicyPasswordVariable String
    Variable name
    anyConnectEapAuthenticationType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: user, device
    connectionTypeSsl Boolean
    Enabled SSL VPN - Default value: false
    description String
    The description of the Feature
    enableCertificateListCheck Boolean
    • Default value: false
    enableCertificateListCheckVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    ikev2AntiDosThreshold Number
    Anti-DOS Threshold, Attribute conditional on connection_type_ssl being equal to false - Range: 10-1000 - Default value: 100
    ikev2AntiDosThresholdVariable String
    Variable name
    ikev2LocalIkeIdentityType String
    , Attribute conditional on connection_type_ssl being equal to false - Choices: EMAIL, FQDN, KEYID, IPv4 ADDRESS, IPv6 ADDRESS
    ikev2LocalIkeIdentityTypeVariable String
    Variable name
    ikev2LocalIkeIdentityValue String
    , Attribute conditional on connection_type_ssl being equal to false
    ikev2LocalIkeIdentityValueVariable String
    Variable name
    ikev2SecurityAssociationLifetime Number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 86400
    ikev2SecurityAssociationLifetimeVariable String
    Variable name
    ipsecAntiReplayWindowSize Number
    security Association Lifetime, Attribute conditional on ipsec_enable_anti_replay being equal to true - Default value: 64
    ipsecAntiReplayWindowSizeVariable String
    Variable name
    ipsecEnableAntiReplay Boolean
    Enable Anti-Replay, Attribute conditional on connection_type_ssl being equal to false - Default value: true
    ipsecEnableAntiReplayVariable String
    Variable name
    ipsecEnablePerfectFowardSecrecy Boolean
    security Association Lifetime, Attribute conditional on connection_type_ssl being equal to false - Default value: false
    ipsecEnablePerfectFowardSecrecyVariable String
    Variable name
    ipsecSecurityAssociationLifetime Number
    Security Association Lifetime in Seconds, Attribute conditional on connection_type_ssl being equal to false - Range: 3600-86400 - Default value: 3600
    ipsecSecurityAssociationLifetimeVariable String
    Variable name
    ipv4PoolSize Number
    IPv4 Pool Size - Default value: 1000
    ipv4PoolSizeVariable String
    Variable name
    ipv6PoolSize Number
    IPv6 Pool Size - Default value: 1024
    ipv6PoolSizeVariable String
    Variable name
    name String
    The name of the Feature
    pskAuthenticationPreSharedKey String
    PSK Pre Shared Key, Attribute conditional on psk_authentication_type being equal to group
    pskAuthenticationPreSharedKeyVariable String
    Variable name
    pskAuthenticationType String
    PSK Selection, Attribute conditional on connection_type_ssl being equal to false - Choices: aaa, group
    pskAuthenticationTypeVariable String
    Variable name
    radiusGroupName String
    radiusGroupNameVariable String
    Variable name
    version Number
    The version of the Feature

    Import

    $ pulumi import sdwan:index/systemRemoteAccessFeature:SystemRemoteAccessFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi