volcengine.vpn.SslVpnClientCert
Explore with Pulumi AI
Provides a resource to manage ssl vpn client cert
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.Zones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
    vpcName: "acc-test-vpc",
    cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
    subnetName: "acc-test-subnet",
    cidrBlock: "172.16.0.0/24",
    zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
    vpcId: fooVpc.id,
});
const fooGateway = new volcengine.vpn.Gateway("fooGateway", {
    vpcId: fooVpc.id,
    subnetId: fooSubnet.id,
    bandwidth: 5,
    vpnGatewayName: "acc-test1",
    description: "acc-test1",
    period: 7,
    projectName: "default",
    sslEnabled: true,
    sslMaxConnections: 5,
});
const fooSslVpnServer = new volcengine.vpn.SslVpnServer("fooSslVpnServer", {
    vpnGatewayId: fooGateway.id,
    localSubnets: [fooSubnet.cidrBlock],
    clientIpPool: "172.16.2.0/24",
    sslVpnServerName: "acc-test-ssl",
    description: "acc-test",
    protocol: "UDP",
    cipher: "AES-128-CBC",
    auth: "SHA1",
    compress: true,
});
const fooSslVpnClientCert = new volcengine.vpn.SslVpnClientCert("fooSslVpnClientCert", {
    sslVpnServerId: fooSslVpnServer.id,
    sslVpnClientCertName: "acc-test-client-cert",
    description: "acc-test",
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
    vpc_name="acc-test-vpc",
    cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
    subnet_name="acc-test-subnet",
    cidr_block="172.16.0.0/24",
    zone_id=foo_zones.zones[0].id,
    vpc_id=foo_vpc.id)
foo_gateway = volcengine.vpn.Gateway("fooGateway",
    vpc_id=foo_vpc.id,
    subnet_id=foo_subnet.id,
    bandwidth=5,
    vpn_gateway_name="acc-test1",
    description="acc-test1",
    period=7,
    project_name="default",
    ssl_enabled=True,
    ssl_max_connections=5)
foo_ssl_vpn_server = volcengine.vpn.SslVpnServer("fooSslVpnServer",
    vpn_gateway_id=foo_gateway.id,
    local_subnets=[foo_subnet.cidr_block],
    client_ip_pool="172.16.2.0/24",
    ssl_vpn_server_name="acc-test-ssl",
    description="acc-test",
    protocol="UDP",
    cipher="AES-128-CBC",
    auth="SHA1",
    compress=True)
foo_ssl_vpn_client_cert = volcengine.vpn.SslVpnClientCert("fooSslVpnClientCert",
    ssl_vpn_server_id=foo_ssl_vpn_server.id,
    ssl_vpn_client_cert_name="acc-test-client-cert",
    description="acc-test")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpn"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooZones, err := ecs.Zones(ctx, nil, nil)
		if err != nil {
			return err
		}
		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
			VpcName:   pulumi.String("acc-test-vpc"),
			CidrBlock: pulumi.String("172.16.0.0/16"),
		})
		if err != nil {
			return err
		}
		fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
			SubnetName: pulumi.String("acc-test-subnet"),
			CidrBlock:  pulumi.String("172.16.0.0/24"),
			ZoneId:     pulumi.String(fooZones.Zones[0].Id),
			VpcId:      fooVpc.ID(),
		})
		if err != nil {
			return err
		}
		fooGateway, err := vpn.NewGateway(ctx, "fooGateway", &vpn.GatewayArgs{
			VpcId:             fooVpc.ID(),
			SubnetId:          fooSubnet.ID(),
			Bandwidth:         pulumi.Int(5),
			VpnGatewayName:    pulumi.String("acc-test1"),
			Description:       pulumi.String("acc-test1"),
			Period:            pulumi.Int(7),
			ProjectName:       pulumi.String("default"),
			SslEnabled:        pulumi.Bool(true),
			SslMaxConnections: pulumi.Int(5),
		})
		if err != nil {
			return err
		}
		fooSslVpnServer, err := vpn.NewSslVpnServer(ctx, "fooSslVpnServer", &vpn.SslVpnServerArgs{
			VpnGatewayId: fooGateway.ID(),
			LocalSubnets: pulumi.StringArray{
				fooSubnet.CidrBlock,
			},
			ClientIpPool:     pulumi.String("172.16.2.0/24"),
			SslVpnServerName: pulumi.String("acc-test-ssl"),
			Description:      pulumi.String("acc-test"),
			Protocol:         pulumi.String("UDP"),
			Cipher:           pulumi.String("AES-128-CBC"),
			Auth:             pulumi.String("SHA1"),
			Compress:         pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = vpn.NewSslVpnClientCert(ctx, "fooSslVpnClientCert", &vpn.SslVpnClientCertArgs{
			SslVpnServerId:       fooSslVpnServer.ID(),
			SslVpnClientCertName: pulumi.String("acc-test-client-cert"),
			Description:          pulumi.String("acc-test"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var fooZones = Volcengine.Ecs.Zones.Invoke();
    var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
    {
        VpcName = "acc-test-vpc",
        CidrBlock = "172.16.0.0/16",
    });
    var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
    {
        SubnetName = "acc-test-subnet",
        CidrBlock = "172.16.0.0/24",
        ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
        VpcId = fooVpc.Id,
    });
    var fooGateway = new Volcengine.Vpn.Gateway("fooGateway", new()
    {
        VpcId = fooVpc.Id,
        SubnetId = fooSubnet.Id,
        Bandwidth = 5,
        VpnGatewayName = "acc-test1",
        Description = "acc-test1",
        Period = 7,
        ProjectName = "default",
        SslEnabled = true,
        SslMaxConnections = 5,
    });
    var fooSslVpnServer = new Volcengine.Vpn.SslVpnServer("fooSslVpnServer", new()
    {
        VpnGatewayId = fooGateway.Id,
        LocalSubnets = new[]
        {
            fooSubnet.CidrBlock,
        },
        ClientIpPool = "172.16.2.0/24",
        SslVpnServerName = "acc-test-ssl",
        Description = "acc-test",
        Protocol = "UDP",
        Cipher = "AES-128-CBC",
        Auth = "SHA1",
        Compress = true,
    });
    var fooSslVpnClientCert = new Volcengine.Vpn.SslVpnClientCert("fooSslVpnClientCert", new()
    {
        SslVpnServerId = fooSslVpnServer.Id,
        SslVpnClientCertName = "acc-test-client-cert",
        Description = "acc-test",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.ZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.vpn.Gateway;
import com.pulumi.volcengine.vpn.GatewayArgs;
import com.pulumi.volcengine.vpn.SslVpnServer;
import com.pulumi.volcengine.vpn.SslVpnServerArgs;
import com.pulumi.volcengine.vpn.SslVpnClientCert;
import com.pulumi.volcengine.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 fooZones = EcsFunctions.Zones();
        var fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
            .vpcName("acc-test-vpc")
            .cidrBlock("172.16.0.0/16")
            .build());
        var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
            .subnetName("acc-test-subnet")
            .cidrBlock("172.16.0.0/24")
            .zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
            .vpcId(fooVpc.id())
            .build());
        var fooGateway = new Gateway("fooGateway", GatewayArgs.builder()        
            .vpcId(fooVpc.id())
            .subnetId(fooSubnet.id())
            .bandwidth(5)
            .vpnGatewayName("acc-test1")
            .description("acc-test1")
            .period(7)
            .projectName("default")
            .sslEnabled(true)
            .sslMaxConnections(5)
            .build());
        var fooSslVpnServer = new SslVpnServer("fooSslVpnServer", SslVpnServerArgs.builder()        
            .vpnGatewayId(fooGateway.id())
            .localSubnets(fooSubnet.cidrBlock())
            .clientIpPool("172.16.2.0/24")
            .sslVpnServerName("acc-test-ssl")
            .description("acc-test")
            .protocol("UDP")
            .cipher("AES-128-CBC")
            .auth("SHA1")
            .compress(true)
            .build());
        var fooSslVpnClientCert = new SslVpnClientCert("fooSslVpnClientCert", SslVpnClientCertArgs.builder()        
            .sslVpnServerId(fooSslVpnServer.id())
            .sslVpnClientCertName("acc-test-client-cert")
            .description("acc-test")
            .build());
    }
}
resources:
  fooVpc:
    type: volcengine:vpc:Vpc
    properties:
      vpcName: acc-test-vpc
      cidrBlock: 172.16.0.0/16
  fooSubnet:
    type: volcengine:vpc:Subnet
    properties:
      subnetName: acc-test-subnet
      cidrBlock: 172.16.0.0/24
      zoneId: ${fooZones.zones[0].id}
      vpcId: ${fooVpc.id}
  fooGateway:
    type: volcengine:vpn:Gateway
    properties:
      vpcId: ${fooVpc.id}
      subnetId: ${fooSubnet.id}
      bandwidth: 5
      vpnGatewayName: acc-test1
      description: acc-test1
      period: 7
      projectName: default
      sslEnabled: true
      sslMaxConnections: 5
  fooSslVpnServer:
    type: volcengine:vpn:SslVpnServer
    properties:
      vpnGatewayId: ${fooGateway.id}
      localSubnets:
        - ${fooSubnet.cidrBlock}
      clientIpPool: 172.16.2.0/24
      sslVpnServerName: acc-test-ssl
      description: acc-test
      protocol: UDP
      cipher: AES-128-CBC
      auth: SHA1
      compress: true
  fooSslVpnClientCert:
    type: volcengine:vpn:SslVpnClientCert
    properties:
      sslVpnServerId: ${fooSslVpnServer.id}
      sslVpnClientCertName: acc-test-client-cert
      description: acc-test
variables:
  fooZones:
    fn::invoke:
      Function: volcengine:ecs:Zones
      Arguments: {}
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,
                     description: Optional[str] = None,
                     ssl_vpn_client_cert_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: volcengine: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 Volcengine.Vpn.SslVpnClientCert("sslVpnClientCertResource", new()
{
    SslVpnServerId = "string",
    Description = "string",
    SslVpnClientCertName = "string",
});
example, err := vpn.NewSslVpnClientCert(ctx, "sslVpnClientCertResource", &vpn.SslVpnClientCertArgs{
	SslVpnServerId:       pulumi.String("string"),
	Description:          pulumi.String("string"),
	SslVpnClientCertName: pulumi.String("string"),
})
var sslVpnClientCertResource = new SslVpnClientCert("sslVpnClientCertResource", SslVpnClientCertArgs.builder()
    .sslVpnServerId("string")
    .description("string")
    .sslVpnClientCertName("string")
    .build());
ssl_vpn_client_cert_resource = volcengine.vpn.SslVpnClientCert("sslVpnClientCertResource",
    ssl_vpn_server_id="string",
    description="string",
    ssl_vpn_client_cert_name="string")
const sslVpnClientCertResource = new volcengine.vpn.SslVpnClientCert("sslVpnClientCertResource", {
    sslVpnServerId: "string",
    description: "string",
    sslVpnClientCertName: "string",
});
type: volcengine:vpn:SslVpnClientCert
properties:
    description: string
    sslVpnClientCertName: 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:
- SslVpn stringServer Id 
- The id of the ssl vpn server.
- Description string
- The description of the ssl vpn client cert.
- SslVpn stringClient Cert Name 
- The name of the ssl vpn client cert.
- SslVpn stringServer Id 
- The id of the ssl vpn server.
- Description string
- The description of the ssl vpn client cert.
- SslVpn stringClient Cert Name 
- The name of the ssl vpn client cert.
- sslVpn StringServer Id 
- The id of the ssl vpn server.
- description String
- The description of the ssl vpn client cert.
- sslVpn StringClient Cert Name 
- The name of the ssl vpn client cert.
- sslVpn stringServer Id 
- The id of the ssl vpn server.
- description string
- The description of the ssl vpn client cert.
- sslVpn stringClient Cert Name 
- The name of the ssl vpn client cert.
- ssl_vpn_ strserver_ id 
- The id of the ssl vpn server.
- description str
- The description of the ssl vpn client cert.
- ssl_vpn_ strclient_ cert_ name 
- The name of the ssl vpn client cert.
- sslVpn StringServer Id 
- The id of the ssl vpn server.
- description String
- The description of the ssl vpn client cert.
- sslVpn StringClient Cert Name 
- The name of the ssl vpn client cert.
Outputs
All input properties are implicitly available as output properties. Additionally, the SslVpnClientCert resource produces the following output properties:
- CaCertificate string
- The CA certificate.
- CertificateStatus string
- The status of the ssl vpn client cert.
- ClientCertificate string
- The client certificate.
- ClientKey string
- The key of the ssl vpn client.
- CreationTime string
- The creation time of the ssl vpn client cert.
- ExpiredTime string
- The expired time of the ssl vpn client cert.
- Id string
- The provider-assigned unique ID for this managed resource.
- OpenVpn stringClient Config 
- The config of the open vpn client.
- Status string
- The status of the ssl vpn client.
- UpdateTime string
- The update time of the ssl vpn client cert.
- CaCertificate string
- The CA certificate.
- CertificateStatus string
- The status of the ssl vpn client cert.
- ClientCertificate string
- The client certificate.
- ClientKey string
- The key of the ssl vpn client.
- CreationTime string
- The creation time of the ssl vpn client cert.
- ExpiredTime string
- The expired time of the ssl vpn client cert.
- Id string
- The provider-assigned unique ID for this managed resource.
- OpenVpn stringClient Config 
- The config of the open vpn client.
- Status string
- The status of the ssl vpn client.
- UpdateTime string
- The update time of the ssl vpn client cert.
- caCertificate String
- The CA certificate.
- certificateStatus String
- The status of the ssl vpn client cert.
- clientCertificate String
- The client certificate.
- clientKey String
- The key of the ssl vpn client.
- creationTime String
- The creation time of the ssl vpn client cert.
- expiredTime String
- The expired time of the ssl vpn client cert.
- id String
- The provider-assigned unique ID for this managed resource.
- openVpn StringClient Config 
- The config of the open vpn client.
- status String
- The status of the ssl vpn client.
- updateTime String
- The update time of the ssl vpn client cert.
- caCertificate string
- The CA certificate.
- certificateStatus string
- The status of the ssl vpn client cert.
- clientCertificate string
- The client certificate.
- clientKey string
- The key of the ssl vpn client.
- creationTime string
- The creation time of the ssl vpn client cert.
- expiredTime string
- The expired time of the ssl vpn client cert.
- id string
- The provider-assigned unique ID for this managed resource.
- openVpn stringClient Config 
- The config of the open vpn client.
- status string
- The status of the ssl vpn client.
- updateTime string
- The update time of the ssl vpn client cert.
- ca_certificate str
- The CA certificate.
- certificate_status str
- The status of the ssl vpn client cert.
- client_certificate str
- The client certificate.
- client_key str
- The key of the ssl vpn client.
- creation_time str
- The creation time of the ssl vpn client cert.
- expired_time str
- The expired time of the ssl vpn client cert.
- id str
- The provider-assigned unique ID for this managed resource.
- open_vpn_ strclient_ config 
- The config of the open vpn client.
- status str
- The status of the ssl vpn client.
- update_time str
- The update time of the ssl vpn client cert.
- caCertificate String
- The CA certificate.
- certificateStatus String
- The status of the ssl vpn client cert.
- clientCertificate String
- The client certificate.
- clientKey String
- The key of the ssl vpn client.
- creationTime String
- The creation time of the ssl vpn client cert.
- expiredTime String
- The expired time of the ssl vpn client cert.
- id String
- The provider-assigned unique ID for this managed resource.
- openVpn StringClient Config 
- The config of the open vpn client.
- status String
- The status of the ssl vpn client.
- updateTime String
- The update time of the ssl vpn client cert.
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_certificate: Optional[str] = None,
        certificate_status: Optional[str] = None,
        client_certificate: Optional[str] = None,
        client_key: Optional[str] = None,
        creation_time: Optional[str] = None,
        description: Optional[str] = None,
        expired_time: Optional[str] = None,
        open_vpn_client_config: Optional[str] = None,
        ssl_vpn_client_cert_name: Optional[str] = None,
        ssl_vpn_server_id: Optional[str] = None,
        status: Optional[str] = None,
        update_time: Optional[str] = None) -> SslVpnClientCertfunc 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: volcengine: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.
- CaCertificate string
- The CA certificate.
- CertificateStatus string
- The status of the ssl vpn client cert.
- ClientCertificate string
- The client certificate.
- ClientKey string
- The key of the ssl vpn client.
- CreationTime string
- The creation time of the ssl vpn client cert.
- Description string
- The description of the ssl vpn client cert.
- ExpiredTime string
- The expired time of the ssl vpn client cert.
- OpenVpn stringClient Config 
- The config of the open vpn client.
- SslVpn stringClient Cert Name 
- The name of the ssl vpn client cert.
- SslVpn stringServer Id 
- The id of the ssl vpn server.
- Status string
- The status of the ssl vpn client.
- UpdateTime string
- The update time of the ssl vpn client cert.
- CaCertificate string
- The CA certificate.
- CertificateStatus string
- The status of the ssl vpn client cert.
- ClientCertificate string
- The client certificate.
- ClientKey string
- The key of the ssl vpn client.
- CreationTime string
- The creation time of the ssl vpn client cert.
- Description string
- The description of the ssl vpn client cert.
- ExpiredTime string
- The expired time of the ssl vpn client cert.
- OpenVpn stringClient Config 
- The config of the open vpn client.
- SslVpn stringClient Cert Name 
- The name of the ssl vpn client cert.
- SslVpn stringServer Id 
- The id of the ssl vpn server.
- Status string
- The status of the ssl vpn client.
- UpdateTime string
- The update time of the ssl vpn client cert.
- caCertificate String
- The CA certificate.
- certificateStatus String
- The status of the ssl vpn client cert.
- clientCertificate String
- The client certificate.
- clientKey String
- The key of the ssl vpn client.
- creationTime String
- The creation time of the ssl vpn client cert.
- description String
- The description of the ssl vpn client cert.
- expiredTime String
- The expired time of the ssl vpn client cert.
- openVpn StringClient Config 
- The config of the open vpn client.
- sslVpn StringClient Cert Name 
- The name of the ssl vpn client cert.
- sslVpn StringServer Id 
- The id of the ssl vpn server.
- status String
- The status of the ssl vpn client.
- updateTime String
- The update time of the ssl vpn client cert.
- caCertificate string
- The CA certificate.
- certificateStatus string
- The status of the ssl vpn client cert.
- clientCertificate string
- The client certificate.
- clientKey string
- The key of the ssl vpn client.
- creationTime string
- The creation time of the ssl vpn client cert.
- description string
- The description of the ssl vpn client cert.
- expiredTime string
- The expired time of the ssl vpn client cert.
- openVpn stringClient Config 
- The config of the open vpn client.
- sslVpn stringClient Cert Name 
- The name of the ssl vpn client cert.
- sslVpn stringServer Id 
- The id of the ssl vpn server.
- status string
- The status of the ssl vpn client.
- updateTime string
- The update time of the ssl vpn client cert.
- ca_certificate str
- The CA certificate.
- certificate_status str
- The status of the ssl vpn client cert.
- client_certificate str
- The client certificate.
- client_key str
- The key of the ssl vpn client.
- creation_time str
- The creation time of the ssl vpn client cert.
- description str
- The description of the ssl vpn client cert.
- expired_time str
- The expired time of the ssl vpn client cert.
- open_vpn_ strclient_ config 
- The config of the open vpn client.
- ssl_vpn_ strclient_ cert_ name 
- The name of the ssl vpn client cert.
- ssl_vpn_ strserver_ id 
- The id of the ssl vpn server.
- status str
- The status of the ssl vpn client.
- update_time str
- The update time of the ssl vpn client cert.
- caCertificate String
- The CA certificate.
- certificateStatus String
- The status of the ssl vpn client cert.
- clientCertificate String
- The client certificate.
- clientKey String
- The key of the ssl vpn client.
- creationTime String
- The creation time of the ssl vpn client cert.
- description String
- The description of the ssl vpn client cert.
- expiredTime String
- The expired time of the ssl vpn client cert.
- openVpn StringClient Config 
- The config of the open vpn client.
- sslVpn StringClient Cert Name 
- The name of the ssl vpn client cert.
- sslVpn StringServer Id 
- The id of the ssl vpn server.
- status String
- The status of the ssl vpn client.
- updateTime String
- The update time of the ssl vpn client cert.
Import
SSL VPN Client Cert can be imported using the id, e.g.
$ pulumi import volcengine:vpn/sslVpnClientCert:SslVpnClientCert default vsc-2d6b7gjrzc2yo58ozfcx2****
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the volcengineTerraform Provider.