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,
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
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:
- Any
Connect stringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- Radius
Group stringName - Aaa
Derive stringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Domain Variable - Variable name
- Aaa
Derive stringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the Feature
- Enable
Certificate boolList Check - Default value:
false
- Default value:
- Enable
Certificate stringList Check Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- string
- Variable name
- Psk
Authentication stringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName Variable - Variable name
- Any
Connect stringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- Radius
Group stringName - Aaa
Derive stringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Domain Variable - Variable name
- Aaa
Derive stringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the Feature
- Enable
Certificate boolList Check - Default value:
false
- Default value:
- Enable
Certificate stringList Check Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- string
- Variable name
- Psk
Authentication stringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName Variable - Variable name
- any
Connect StringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- radius
Group StringName - aaa
Derive StringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Domain Variable - Variable name
- aaa
Derive StringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the Feature
- enable
Certificate BooleanList Check - Default value:
false
- Default value:
- enable
Certificate StringList Check Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos IntegerThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association IntegerLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti IntegerReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security IntegerAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Integer - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Integer - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- String
- Variable name
- psk
Authentication StringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName Variable - Variable name
- any
Connect stringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- radius
Group stringName - aaa
Derive stringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive stringName From Peer Domain Variable - Variable name
- aaa
Derive stringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive stringName From Peer Identity Variable - Variable name
- aaa
Enable booleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable stringAccounting Variable - Variable name
- aaa
Specify stringName Policy Name - aaa
Specify stringName Policy Name Variable - Variable name
- aaa
Specify stringName Policy Password - aaa
Specify stringName Policy Password Variable - Variable name
- connection
Type booleanSsl - Enabled SSL VPN - Default value:
false
- description string
- The description of the Feature
- enable
Certificate booleanList Check - Default value:
false
- Default value:
- enable
Certificate stringList Check Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- ikev2Anti
Dos numberThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- ikev2Anti
Dos stringThreshold Variable - Variable name
- ikev2Local
Ike stringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- ikev2Local
Ike stringIdentity Type Variable - Variable name
- ikev2Local
Ike stringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- ikev2Local
Ike stringIdentity Value Variable - Variable name
- ikev2Security
Association numberLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- ikev2Security
Association stringLifetime Variable - Variable name
- ipsec
Anti numberReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- ipsec
Anti stringReplay Window Size Variable - Variable name
- ipsec
Enable booleanAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- ipsec
Enable stringAnti Replay Variable - Variable name
- ipsec
Enable booleanPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security numberAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- ipsec
Security stringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size stringVariable - Variable name
- ipv6Pool
Size number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size stringVariable - Variable name
- name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- string
- Variable name
- psk
Authentication stringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk
Authentication stringType Variable - Variable name
- radius
Group stringName Variable - Variable name
- any_
connect_ streap_ authentication_ type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- radius_
group_ strname - aaa_
derive_ strname_ from_ peer_ domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa_
derive_ strname_ from_ peer_ domain_ variable - Variable name
- aaa_
derive_ strname_ from_ peer_ identity - , Attribute conditional on
connection_type_ssl
being 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
- 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_ssl
being 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_ssl
being 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_ssl
being equal tofalse
- ikev2_
local_ strike_ identity_ value_ variable - Variable name
- ikev2_
security_ intassociation_ lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being 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_replay
being 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_ssl
being 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_ssl
being 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_ssl
being 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_type
being equal togroup
- str
- Variable name
- psk_
authentication_ strtype - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk_
authentication_ strtype_ variable - Variable name
- radius_
group_ strname_ variable - Variable name
- any
Connect StringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- radius
Group StringName - aaa
Derive StringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Domain Variable - Variable name
- aaa
Derive StringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the Feature
- enable
Certificate BooleanList Check - Default value:
false
- Default value:
- enable
Certificate StringList Check Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos NumberThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association NumberLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti NumberReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security NumberAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- String
- Variable name
- psk
Authentication StringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group 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) -> 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.
- Aaa
Derive stringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Domain Variable - Variable name
- Aaa
Derive stringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Any
Connect stringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the Feature
- Enable
Certificate boolList Check - Default value:
false
- Default value:
- Enable
Certificate stringList Check Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- string
- Variable name
- Psk
Authentication stringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName - Radius
Group stringName Variable - Variable name
- Version int
- The version of the Feature
- Aaa
Derive stringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Domain Variable - Variable name
- Aaa
Derive stringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Aaa
Derive stringName From Peer Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Any
Connect stringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the Feature
- Enable
Certificate boolList Check - Default value:
false
- Default value:
- Enable
Certificate stringList Check Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- string
- Variable name
- Psk
Authentication stringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName - Radius
Group stringName Variable - Variable name
- Version int
- The version of the Feature
- aaa
Derive StringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Domain Variable - Variable name
- aaa
Derive StringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- any
Connect StringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the Feature
- enable
Certificate BooleanList Check - Default value:
false
- Default value:
- enable
Certificate StringList Check Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos IntegerThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association IntegerLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti IntegerReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security IntegerAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Integer - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Integer - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- String
- Variable name
- psk
Authentication StringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName - radius
Group StringName Variable - Variable name
- version Integer
- The version of the Feature
- aaa
Derive stringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive stringName From Peer Domain Variable - Variable name
- aaa
Derive stringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive stringName From Peer Identity Variable - Variable name
- aaa
Enable booleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable stringAccounting Variable - Variable name
- aaa
Specify stringName Policy Name - aaa
Specify stringName Policy Name Variable - Variable name
- aaa
Specify stringName Policy Password - aaa
Specify stringName Policy Password Variable - Variable name
- any
Connect stringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- connection
Type booleanSsl - Enabled SSL VPN - Default value:
false
- description string
- The description of the Feature
- enable
Certificate booleanList Check - Default value:
false
- Default value:
- enable
Certificate stringList Check Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- ikev2Anti
Dos numberThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- ikev2Anti
Dos stringThreshold Variable - Variable name
- ikev2Local
Ike stringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- ikev2Local
Ike stringIdentity Type Variable - Variable name
- ikev2Local
Ike stringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- ikev2Local
Ike stringIdentity Value Variable - Variable name
- ikev2Security
Association numberLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- ikev2Security
Association stringLifetime Variable - Variable name
- ipsec
Anti numberReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- ipsec
Anti stringReplay Window Size Variable - Variable name
- ipsec
Enable booleanAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- ipsec
Enable stringAnti Replay Variable - Variable name
- ipsec
Enable booleanPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security numberAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- ipsec
Security stringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size stringVariable - Variable name
- ipv6Pool
Size number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size stringVariable - Variable name
- name string
- The name of the Feature
- string
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- string
- Variable name
- psk
Authentication stringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk
Authentication stringType Variable - Variable name
- radius
Group stringName - radius
Group stringName Variable - Variable name
- version number
- The version of the Feature
- aaa_
derive_ strname_ from_ peer_ domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa_
derive_ strname_ from_ peer_ domain_ variable - Variable name
- aaa_
derive_ strname_ from_ peer_ identity - , Attribute conditional on
connection_type_ssl
being 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_ssl
being 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_ssl
being 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_ssl
being 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_ssl
being equal tofalse
- ikev2_
local_ strike_ identity_ value_ variable - Variable name
- ikev2_
security_ intassociation_ lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being 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_replay
being 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_ssl
being 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_ssl
being 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_ssl
being 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_type
being equal togroup
- str
- Variable name
- psk_
authentication_ strtype - PSK Selection, Attribute conditional on
connection_type_ssl
being 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
- aaa
Derive StringName From Peer Domain - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Domain Variable - Variable name
- aaa
Derive StringName From Peer Identity - , Attribute conditional on
connection_type_ssl
being equal tofalse
- aaa
Derive StringName From Peer Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- any
Connect StringEap Authentication Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:user
,device
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the Feature
- enable
Certificate BooleanList Check - Default value:
false
- Default value:
- enable
Certificate StringList Check Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos NumberThreshold - Anti-DOS Threshold, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - , Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - , Attribute conditional on
connection_type_ssl
being equal tofalse
- ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association NumberLifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti NumberReplay Window Size - security Association Lifetime, Attribute conditional on
ipsec_enable_anti_replay
being equal totrue
- Default value:64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime, Attribute conditional on
connection_type_ssl
being equal tofalse
- Default value:false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security NumberAssociation Lifetime - Security Association Lifetime in Seconds, Attribute conditional on
connection_type_ssl
being equal tofalse
- Range:3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the Feature
- String
- PSK Pre Shared Key, Attribute conditional on
psk_authentication_type
being equal togroup
- String
- Variable name
- psk
Authentication StringType - PSK Selection, Attribute conditional on
connection_type_ssl
being equal tofalse
- Choices:aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName - radius
Group 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
sdwan
Terraform Provider.