1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. vpn
  5. SslVpnClientCert
Alibaba Cloud v3.86.1 published on Saturday, Sep 27, 2025 by Pulumi

alicloud.vpn.SslVpnClientCert

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.86.1 published on Saturday, Sep 27, 2025 by Pulumi

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    import * as std from "@pulumi/std";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const _default = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const defaultGetNetworks = alicloud.vpc.getNetworks({
        nameRegex: "^default-NODELETING$",
        cidrBlock: "172.16.0.0/16",
    });
    const default0 = Promise.all([defaultGetNetworks, _default]).then(([defaultGetNetworks, _default]) => alicloud.vpc.getSwitches({
        vpcId: defaultGetNetworks.ids?.[0],
        zoneId: _default.ids?.[0],
    }));
    const default1 = Promise.all([defaultGetNetworks, _default]).then(([defaultGetNetworks, _default]) => alicloud.vpc.getSwitches({
        vpcId: defaultGetNetworks.ids?.[0],
        zoneId: _default.ids?.[1],
    }));
    const defaultGateway = new alicloud.vpn.Gateway("default", {
        vpnGatewayName: name,
        vpcId: defaultGetNetworks.then(defaultGetNetworks => defaultGetNetworks.ids?.[0]),
        bandwidth: 10,
        enableSsl: true,
        description: name,
        paymentType: "Subscription",
        vswitchId: default0.then(default0 => default0.ids?.[0]),
        disasterRecoveryVswitchId: default1.then(default1 => default1.ids?.[0]),
    });
    const defaultSslVpnServer = new alicloud.vpn.SslVpnServer("default", {
        name: name,
        vpnGatewayId: defaultGateway.id,
        clientIpPool: "192.168.0.0/16",
        localSubnet: defaultGetNetworks.then(defaultGetNetworks => std.cidrsubnet({
            input: defaultGetNetworks.vpcs?.[0]?.cidrBlock,
            newbits: 8,
            netnum: 8,
        })).then(invoke => invoke.result),
        protocol: "UDP",
        cipher: "AES-128-CBC",
        port: 1194,
        compress: false,
    });
    const defaultSslVpnClientCert = new alicloud.vpn.SslVpnClientCert("default", {
        sslVpnServerId: defaultSslVpnServer.id,
        name: name,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    import pulumi_std as std
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.get_zones(available_resource_creation="VSwitch")
    default_get_networks = alicloud.vpc.get_networks(name_regex="^default-NODELETING$",
        cidr_block="172.16.0.0/16")
    default0 = alicloud.vpc.get_switches(vpc_id=default_get_networks.ids[0],
        zone_id=default.ids[0])
    default1 = alicloud.vpc.get_switches(vpc_id=default_get_networks.ids[0],
        zone_id=default.ids[1])
    default_gateway = alicloud.vpn.Gateway("default",
        vpn_gateway_name=name,
        vpc_id=default_get_networks.ids[0],
        bandwidth=10,
        enable_ssl=True,
        description=name,
        payment_type="Subscription",
        vswitch_id=default0.ids[0],
        disaster_recovery_vswitch_id=default1.ids[0])
    default_ssl_vpn_server = alicloud.vpn.SslVpnServer("default",
        name=name,
        vpn_gateway_id=default_gateway.id,
        client_ip_pool="192.168.0.0/16",
        local_subnet=std.cidrsubnet(input=default_get_networks.vpcs[0].cidr_block,
            newbits=8,
            netnum=8).result,
        protocol="UDP",
        cipher="AES-128-CBC",
        port=1194,
        compress=False)
    default_ssl_vpn_client_cert = alicloud.vpn.SslVpnClientCert("default",
        ssl_vpn_server_id=default_ssl_vpn_server.id,
        name=name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpn"
    	"github.com/pulumi/pulumi-std/sdk/go/std"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultGetNetworks, err := vpc.GetNetworks(ctx, &vpc.GetNetworksArgs{
    			NameRegex: pulumi.StringRef("^default-NODELETING$"),
    			CidrBlock: pulumi.StringRef("172.16.0.0/16"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		default0, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
    			VpcId:  pulumi.StringRef(defaultGetNetworks.Ids[0]),
    			ZoneId: pulumi.StringRef(_default.Ids[0]),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		default1, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
    			VpcId:  pulumi.StringRef(defaultGetNetworks.Ids[0]),
    			ZoneId: pulumi.StringRef(_default.Ids[1]),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultGateway, err := vpn.NewGateway(ctx, "default", &vpn.GatewayArgs{
    			VpnGatewayName:            pulumi.String(name),
    			VpcId:                     pulumi.String(defaultGetNetworks.Ids[0]),
    			Bandwidth:                 pulumi.Int(10),
    			EnableSsl:                 pulumi.Bool(true),
    			Description:               pulumi.String(name),
    			PaymentType:               pulumi.String("Subscription"),
    			VswitchId:                 pulumi.String(default0.Ids[0]),
    			DisasterRecoveryVswitchId: pulumi.String(default1.Ids[0]),
    		})
    		if err != nil {
    			return err
    		}
    		invokeCidrsubnet, err := std.Cidrsubnet(ctx, &std.CidrsubnetArgs{
    			Input:   defaultGetNetworks.Vpcs[0].CidrBlock,
    			Newbits: 8,
    			Netnum:  8,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultSslVpnServer, err := vpn.NewSslVpnServer(ctx, "default", &vpn.SslVpnServerArgs{
    			Name:         pulumi.String(name),
    			VpnGatewayId: defaultGateway.ID(),
    			ClientIpPool: pulumi.String("192.168.0.0/16"),
    			LocalSubnet:  pulumi.String(invokeCidrsubnet.Result),
    			Protocol:     pulumi.String("UDP"),
    			Cipher:       pulumi.String("AES-128-CBC"),
    			Port:         pulumi.Int(1194),
    			Compress:     pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = vpn.NewSslVpnClientCert(ctx, "default", &vpn.SslVpnClientCertArgs{
    			SslVpnServerId: defaultSslVpnServer.ID(),
    			Name:           pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    using Std = Pulumi.Std;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var @default = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var defaultGetNetworks = AliCloud.Vpc.GetNetworks.Invoke(new()
        {
            NameRegex = "^default-NODELETING$",
            CidrBlock = "172.16.0.0/16",
        });
    
        var default0 = AliCloud.Vpc.GetSwitches.Invoke(new()
        {
            VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            ZoneId = @default.Apply(getZonesResult => getZonesResult.Ids[0]),
        });
    
        var default1 = AliCloud.Vpc.GetSwitches.Invoke(new()
        {
            VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            ZoneId = @default.Apply(getZonesResult => getZonesResult.Ids[1]),
        });
    
        var defaultGateway = new AliCloud.Vpn.Gateway("default", new()
        {
            VpnGatewayName = name,
            VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            Bandwidth = 10,
            EnableSsl = true,
            Description = name,
            PaymentType = "Subscription",
            VswitchId = default0.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
            DisasterRecoveryVswitchId = default1.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
        });
    
        var defaultSslVpnServer = new AliCloud.Vpn.SslVpnServer("default", new()
        {
            Name = name,
            VpnGatewayId = defaultGateway.Id,
            ClientIpPool = "192.168.0.0/16",
            LocalSubnet = Std.Cidrsubnet.Invoke(new()
            {
                Input = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Vpcs[0]?.CidrBlock),
                Newbits = 8,
                Netnum = 8,
            }).Apply(invoke => invoke.Result),
            Protocol = "UDP",
            Cipher = "AES-128-CBC",
            Port = 1194,
            Compress = false,
        });
    
        var defaultSslVpnClientCert = new AliCloud.Vpn.SslVpnClientCert("default", new()
        {
            SslVpnServerId = defaultSslVpnServer.Id,
            Name = name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.VpcFunctions;
    import com.pulumi.alicloud.vpc.inputs.GetNetworksArgs;
    import com.pulumi.alicloud.vpc.inputs.GetSwitchesArgs;
    import com.pulumi.alicloud.vpn.Gateway;
    import com.pulumi.alicloud.vpn.GatewayArgs;
    import com.pulumi.alicloud.vpn.SslVpnServer;
    import com.pulumi.alicloud.vpn.SslVpnServerArgs;
    import com.pulumi.std.StdFunctions;
    import com.pulumi.std.inputs.CidrsubnetArgs;
    import com.pulumi.alicloud.vpn.SslVpnClientCert;
    import com.pulumi.alicloud.vpn.SslVpnClientCertArgs;
    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) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableResourceCreation("VSwitch")
                .build());
    
            final var defaultGetNetworks = VpcFunctions.getNetworks(GetNetworksArgs.builder()
                .nameRegex("^default-NODELETING$")
                .cidrBlock("172.16.0.0/16")
                .build());
    
            final var default0 = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
                .vpcId(defaultGetNetworks.ids()[0])
                .zoneId(default_.ids()[0])
                .build());
    
            final var default1 = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
                .vpcId(defaultGetNetworks.ids()[0])
                .zoneId(default_.ids()[1])
                .build());
    
            var defaultGateway = new Gateway("defaultGateway", GatewayArgs.builder()
                .vpnGatewayName(name)
                .vpcId(defaultGetNetworks.ids()[0])
                .bandwidth(10)
                .enableSsl(true)
                .description(name)
                .paymentType("Subscription")
                .vswitchId(default0.ids()[0])
                .disasterRecoveryVswitchId(default1.ids()[0])
                .build());
    
            var defaultSslVpnServer = new SslVpnServer("defaultSslVpnServer", SslVpnServerArgs.builder()
                .name(name)
                .vpnGatewayId(defaultGateway.id())
                .clientIpPool("192.168.0.0/16")
                .localSubnet(StdFunctions.cidrsubnet(CidrsubnetArgs.builder()
                    .input(defaultGetNetworks.vpcs()[0].cidrBlock())
                    .newbits(8)
                    .netnum(8)
                    .build()).result())
                .protocol("UDP")
                .cipher("AES-128-CBC")
                .port(1194)
                .compress(false)
                .build());
    
            var defaultSslVpnClientCert = new SslVpnClientCert("defaultSslVpnClientCert", SslVpnClientCertArgs.builder()
                .sslVpnServerId(defaultSslVpnServer.id())
                .name(name)
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      defaultGateway:
        type: alicloud:vpn:Gateway
        name: default
        properties:
          vpnGatewayName: ${name}
          vpcId: ${defaultGetNetworks.ids[0]}
          bandwidth: '10'
          enableSsl: true
          description: ${name}
          paymentType: Subscription
          vswitchId: ${default0.ids[0]}
          disasterRecoveryVswitchId: ${default1.ids[0]}
      defaultSslVpnServer:
        type: alicloud:vpn:SslVpnServer
        name: default
        properties:
          name: ${name}
          vpnGatewayId: ${defaultGateway.id}
          clientIpPool: 192.168.0.0/16
          localSubnet:
            fn::invoke:
              function: std:cidrsubnet
              arguments:
                input: ${defaultGetNetworks.vpcs[0].cidrBlock}
                newbits: 8
                netnum: 8
              return: result
          protocol: UDP
          cipher: AES-128-CBC
          port: '1194'
          compress: 'false'
      defaultSslVpnClientCert:
        type: alicloud:vpn:SslVpnClientCert
        name: default
        properties:
          sslVpnServerId: ${defaultSslVpnServer.id}
          name: ${name}
    variables:
      default:
        fn::invoke:
          function: alicloud:getZones
          arguments:
            availableResourceCreation: VSwitch
      defaultGetNetworks:
        fn::invoke:
          function: alicloud:vpc:getNetworks
          arguments:
            nameRegex: ^default-NODELETING$
            cidrBlock: 172.16.0.0/16
      default0:
        fn::invoke:
          function: alicloud:vpc:getSwitches
          arguments:
            vpcId: ${defaultGetNetworks.ids[0]}
            zoneId: ${default.ids[0]}
      default1:
        fn::invoke:
          function: alicloud:vpc:getSwitches
          arguments:
            vpcId: ${defaultGetNetworks.ids[0]}
            zoneId: ${default.ids[1]}
    

    Create SslVpnClientCert Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SslVpnClientCert(name: string, args: SslVpnClientCertArgs, opts?: CustomResourceOptions);
    @overload
    def SslVpnClientCert(resource_name: str,
                         args: SslVpnClientCertArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SslVpnClientCert(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         ssl_vpn_server_id: Optional[str] = None,
                         name: Optional[str] = None)
    func NewSslVpnClientCert(ctx *Context, name string, args SslVpnClientCertArgs, opts ...ResourceOption) (*SslVpnClientCert, error)
    public SslVpnClientCert(string name, SslVpnClientCertArgs args, CustomResourceOptions? opts = null)
    public SslVpnClientCert(String name, SslVpnClientCertArgs args)
    public SslVpnClientCert(String name, SslVpnClientCertArgs args, CustomResourceOptions options)
    
    type: alicloud:vpn:SslVpnClientCert
    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 SslVpnClientCertArgs
    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 SslVpnClientCertArgs
    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 SslVpnClientCertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SslVpnClientCertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SslVpnClientCertArgs
    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 sslVpnClientCertResource = new AliCloud.Vpn.SslVpnClientCert("sslVpnClientCertResource", new()
    {
        SslVpnServerId = "string",
        Name = "string",
    });
    
    example, err := vpn.NewSslVpnClientCert(ctx, "sslVpnClientCertResource", &vpn.SslVpnClientCertArgs{
    	SslVpnServerId: pulumi.String("string"),
    	Name:           pulumi.String("string"),
    })
    
    var sslVpnClientCertResource = new SslVpnClientCert("sslVpnClientCertResource", SslVpnClientCertArgs.builder()
        .sslVpnServerId("string")
        .name("string")
        .build());
    
    ssl_vpn_client_cert_resource = alicloud.vpn.SslVpnClientCert("sslVpnClientCertResource",
        ssl_vpn_server_id="string",
        name="string")
    
    const sslVpnClientCertResource = new alicloud.vpn.SslVpnClientCert("sslVpnClientCertResource", {
        sslVpnServerId: "string",
        name: "string",
    });
    
    type: alicloud:vpn:SslVpnClientCert
    properties:
        name: string
        sslVpnServerId: string
    

    SslVpnClientCert 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 SslVpnClientCert resource accepts the following input properties:

    SslVpnServerId string
    The ID of the SSL-VPN server.
    Name string
    The name of the client certificate.
    SslVpnServerId string
    The ID of the SSL-VPN server.
    Name string
    The name of the client certificate.
    sslVpnServerId String
    The ID of the SSL-VPN server.
    name String
    The name of the client certificate.
    sslVpnServerId string
    The ID of the SSL-VPN server.
    name string
    The name of the client certificate.
    ssl_vpn_server_id str
    The ID of the SSL-VPN server.
    name str
    The name of the client certificate.
    sslVpnServerId String
    The ID of the SSL-VPN server.
    name String
    The name of the client certificate.

    Outputs

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

    CaCert string
    The client ca cert.
    ClientCert string
    The client cert.
    ClientConfig string
    The vpn client config.
    ClientKey string
    The client key.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the client certificate.
    CaCert string
    The client ca cert.
    ClientCert string
    The client cert.
    ClientConfig string
    The vpn client config.
    ClientKey string
    The client key.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the client certificate.
    caCert String
    The client ca cert.
    clientCert String
    The client cert.
    clientConfig String
    The vpn client config.
    clientKey String
    The client key.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the client certificate.
    caCert string
    The client ca cert.
    clientCert string
    The client cert.
    clientConfig string
    The vpn client config.
    clientKey string
    The client key.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the client certificate.
    ca_cert str
    The client ca cert.
    client_cert str
    The client cert.
    client_config str
    The vpn client config.
    client_key str
    The client key.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the client certificate.
    caCert String
    The client ca cert.
    clientCert String
    The client cert.
    clientConfig String
    The vpn client config.
    clientKey String
    The client key.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the client certificate.

    Look up Existing SslVpnClientCert Resource

    Get an existing SslVpnClientCert 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?: SslVpnClientCertState, opts?: CustomResourceOptions): SslVpnClientCert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ca_cert: Optional[str] = None,
            client_cert: Optional[str] = None,
            client_config: Optional[str] = None,
            client_key: Optional[str] = None,
            name: Optional[str] = None,
            ssl_vpn_server_id: Optional[str] = None,
            status: Optional[str] = None) -> SslVpnClientCert
    func GetSslVpnClientCert(ctx *Context, name string, id IDInput, state *SslVpnClientCertState, opts ...ResourceOption) (*SslVpnClientCert, error)
    public static SslVpnClientCert Get(string name, Input<string> id, SslVpnClientCertState? state, CustomResourceOptions? opts = null)
    public static SslVpnClientCert get(String name, Output<String> id, SslVpnClientCertState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:vpn:SslVpnClientCert    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CaCert string
    The client ca cert.
    ClientCert string
    The client cert.
    ClientConfig string
    The vpn client config.
    ClientKey string
    The client key.
    Name string
    The name of the client certificate.
    SslVpnServerId string
    The ID of the SSL-VPN server.
    Status string
    The status of the client certificate.
    CaCert string
    The client ca cert.
    ClientCert string
    The client cert.
    ClientConfig string
    The vpn client config.
    ClientKey string
    The client key.
    Name string
    The name of the client certificate.
    SslVpnServerId string
    The ID of the SSL-VPN server.
    Status string
    The status of the client certificate.
    caCert String
    The client ca cert.
    clientCert String
    The client cert.
    clientConfig String
    The vpn client config.
    clientKey String
    The client key.
    name String
    The name of the client certificate.
    sslVpnServerId String
    The ID of the SSL-VPN server.
    status String
    The status of the client certificate.
    caCert string
    The client ca cert.
    clientCert string
    The client cert.
    clientConfig string
    The vpn client config.
    clientKey string
    The client key.
    name string
    The name of the client certificate.
    sslVpnServerId string
    The ID of the SSL-VPN server.
    status string
    The status of the client certificate.
    ca_cert str
    The client ca cert.
    client_cert str
    The client cert.
    client_config str
    The vpn client config.
    client_key str
    The client key.
    name str
    The name of the client certificate.
    ssl_vpn_server_id str
    The ID of the SSL-VPN server.
    status str
    The status of the client certificate.
    caCert String
    The client ca cert.
    clientCert String
    The client cert.
    clientConfig String
    The vpn client config.
    clientKey String
    The client key.
    name String
    The name of the client certificate.
    sslVpnServerId String
    The ID of the SSL-VPN server.
    status String
    The status of the client certificate.

    Import

    SSL-VPN client certificates can be imported using the id, e.g.

    $ pulumi import alicloud:vpn/sslVpnClientCert:SslVpnClientCert example vsc-abc123456
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.86.1 published on Saturday, Sep 27, 2025 by Pulumi
      AI Agentic Workflows: Register now