published on Thursday, May 7, 2026 by Volcengine
published on Thursday, May 7, 2026 by Volcengine
SSL client certificate is a sub-resource of the SSL server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const vPNSslVpnClientCertDemo = new volcenginecc.vpn.SslVpnClientCert("VPNSslVpnClientCertDemo", {
sslVpnServerId: "vss-xxxx",
sslVpnClientCertName: "ccapi-test-client-cert",
description: "ccapi-test",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
v_pnssl_vpn_client_cert_demo = volcenginecc.vpn.SslVpnClientCert("VPNSslVpnClientCertDemo",
ssl_vpn_server_id="vss-xxxx",
ssl_vpn_client_cert_name="ccapi-test-client-cert",
description="ccapi-test",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vpn"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpn.NewSslVpnClientCert(ctx, "VPNSslVpnClientCertDemo", &vpn.SslVpnClientCertArgs{
SslVpnServerId: pulumi.String("vss-xxxx"),
SslVpnClientCertName: pulumi.String("ccapi-test-client-cert"),
Description: pulumi.String("ccapi-test"),
Tags: vpn.SslVpnClientCertTagArray{
&vpn.SslVpnClientCertTagArgs{
Key: pulumi.String("env"),
Value: pulumi.String("test"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var vPNSslVpnClientCertDemo = new Volcenginecc.Vpn.SslVpnClientCert("VPNSslVpnClientCertDemo", new()
{
SslVpnServerId = "vss-xxxx",
SslVpnClientCertName = "ccapi-test-client-cert",
Description = "ccapi-test",
Tags = new[]
{
new Volcenginecc.Vpn.Inputs.SslVpnClientCertTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.vpn.SslVpnClientCert;
import com.volcengine.volcenginecc.vpn.SslVpnClientCertArgs;
import com.pulumi.volcenginecc.vpn.inputs.SslVpnClientCertTagArgs;
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 vPNSslVpnClientCertDemo = new SslVpnClientCert("vPNSslVpnClientCertDemo", SslVpnClientCertArgs.builder()
.sslVpnServerId("vss-xxxx")
.sslVpnClientCertName("ccapi-test-client-cert")
.description("ccapi-test")
.tags(SslVpnClientCertTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
vPNSslVpnClientCertDemo:
type: volcenginecc:vpn:SslVpnClientCert
name: VPNSslVpnClientCertDemo
properties:
sslVpnServerId: vss-xxxx
sslVpnClientCertName: ccapi-test-client-cert
description: ccapi-test
tags:
- key: env
value: test
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,
tags: Optional[Sequence[SslVpnClientCertTagArgs]] = 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: volcenginecc: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 Volcenginecc.Vpn.SslVpnClientCert("sslVpnClientCertResource", new()
{
SslVpnServerId = "string",
Description = "string",
SslVpnClientCertName = "string",
Tags = new[]
{
new Volcenginecc.Vpn.Inputs.SslVpnClientCertTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vpn.NewSslVpnClientCert(ctx, "sslVpnClientCertResource", &vpn.SslVpnClientCertArgs{
SslVpnServerId: pulumi.String("string"),
Description: pulumi.String("string"),
SslVpnClientCertName: pulumi.String("string"),
Tags: vpn.SslVpnClientCertTagArray{
&vpn.SslVpnClientCertTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var sslVpnClientCertResource = new SslVpnClientCert("sslVpnClientCertResource", SslVpnClientCertArgs.builder()
.sslVpnServerId("string")
.description("string")
.sslVpnClientCertName("string")
.tags(SslVpnClientCertTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
ssl_vpn_client_cert_resource = volcenginecc.vpn.SslVpnClientCert("sslVpnClientCertResource",
ssl_vpn_server_id="string",
description="string",
ssl_vpn_client_cert_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const sslVpnClientCertResource = new volcenginecc.vpn.SslVpnClientCert("sslVpnClientCertResource", {
sslVpnServerId: "string",
description: "string",
sslVpnClientCertName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcenginecc:vpn:SslVpnClientCert
properties:
description: string
sslVpnClientCertName: string
sslVpnServerId: string
tags:
- key: string
value: 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:
- Ssl
Vpn stringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- Description string
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- Ssl
Vpn stringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
-
List<Volcengine.
Ssl Vpn Client Cert Tag>
- Ssl
Vpn stringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- Description string
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- Ssl
Vpn stringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
-
[]Ssl
Vpn Client Cert Tag Args
- ssl
Vpn StringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- description String
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- ssl
Vpn StringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
-
List<Ssl
Vpn Client Cert Tag>
- ssl
Vpn stringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- description string
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- ssl
Vpn stringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
-
Ssl
Vpn Client Cert Tag[]
- ssl_
vpn_ strserver_ id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- description str
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- ssl_
vpn_ strclient_ cert_ name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
-
Sequence[Ssl
Vpn Client Cert Tag Args]
- ssl
Vpn StringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- description String
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- ssl
Vpn StringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the SslVpnClientCert resource produces the following output properties:
- Ca
Certificate string - CA certificate information.
- Certificate
Status string - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- Client
Certificate string - Client certificate information.
- Client
Key string - Client key information.
- Creation
Time string - Creation time of the SSL client certificate.
- Expired
Time string - Expiration time of the SSL client certificate.
- Id string
- The provider-assigned unique ID for this managed resource.
- Open
Vpn stringClient Config - OpenVPN client configuration.
- Ssl
Vpn stringClient Cert Id - SSL client certificate ID.
- Status string
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- Update
Time string - Modification time of the SSL client certificate.
- Ca
Certificate string - CA certificate information.
- Certificate
Status string - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- Client
Certificate string - Client certificate information.
- Client
Key string - Client key information.
- Creation
Time string - Creation time of the SSL client certificate.
- Expired
Time string - Expiration time of the SSL client certificate.
- Id string
- The provider-assigned unique ID for this managed resource.
- Open
Vpn stringClient Config - OpenVPN client configuration.
- Ssl
Vpn stringClient Cert Id - SSL client certificate ID.
- Status string
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- Update
Time string - Modification time of the SSL client certificate.
- ca
Certificate String - CA certificate information.
- certificate
Status String - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client
Certificate String - Client certificate information.
- client
Key String - Client key information.
- creation
Time String - Creation time of the SSL client certificate.
- expired
Time String - Expiration time of the SSL client certificate.
- id String
- The provider-assigned unique ID for this managed resource.
- open
Vpn StringClient Config - OpenVPN client configuration.
- ssl
Vpn StringClient Cert Id - SSL client certificate ID.
- status String
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- update
Time String - Modification time of the SSL client certificate.
- ca
Certificate string - CA certificate information.
- certificate
Status string - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client
Certificate string - Client certificate information.
- client
Key string - Client key information.
- creation
Time string - Creation time of the SSL client certificate.
- expired
Time string - Expiration time of the SSL client certificate.
- id string
- The provider-assigned unique ID for this managed resource.
- open
Vpn stringClient Config - OpenVPN client configuration.
- ssl
Vpn stringClient Cert Id - SSL client certificate ID.
- status string
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- update
Time string - Modification time of the SSL client certificate.
- ca_
certificate str - CA certificate information.
- certificate_
status str - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client_
certificate str - Client certificate information.
- client_
key str - Client key information.
- creation_
time str - Creation time of the SSL client certificate.
- expired_
time str - Expiration time of the SSL client certificate.
- id str
- The provider-assigned unique ID for this managed resource.
- open_
vpn_ strclient_ config - OpenVPN client configuration.
- ssl_
vpn_ strclient_ cert_ id - SSL client certificate ID.
- status str
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- update_
time str - Modification time of the SSL client certificate.
- ca
Certificate String - CA certificate information.
- certificate
Status String - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client
Certificate String - Client certificate information.
- client
Key String - Client key information.
- creation
Time String - Creation time of the SSL client certificate.
- expired
Time String - Expiration time of the SSL client certificate.
- id String
- The provider-assigned unique ID for this managed resource.
- open
Vpn StringClient Config - OpenVPN client configuration.
- ssl
Vpn StringClient Cert Id - SSL client certificate ID.
- status String
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- update
Time String - Modification time of the SSL 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_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_id: Optional[str] = None,
ssl_vpn_client_cert_name: Optional[str] = None,
ssl_vpn_server_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[SslVpnClientCertTagArgs]] = 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: volcenginecc: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.
- Ca
Certificate string - CA certificate information.
- Certificate
Status string - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- Client
Certificate string - Client certificate information.
- Client
Key string - Client key information.
- Creation
Time string - Creation time of the SSL client certificate.
- Description string
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- Expired
Time string - Expiration time of the SSL client certificate.
- Open
Vpn stringClient Config - OpenVPN client configuration.
- Ssl
Vpn stringClient Cert Id - SSL client certificate ID.
- Ssl
Vpn stringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- Ssl
Vpn stringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- Status string
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
-
List<Volcengine.
Ssl Vpn Client Cert Tag> - Update
Time string - Modification time of the SSL client certificate.
- Ca
Certificate string - CA certificate information.
- Certificate
Status string - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- Client
Certificate string - Client certificate information.
- Client
Key string - Client key information.
- Creation
Time string - Creation time of the SSL client certificate.
- Description string
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- Expired
Time string - Expiration time of the SSL client certificate.
- Open
Vpn stringClient Config - OpenVPN client configuration.
- Ssl
Vpn stringClient Cert Id - SSL client certificate ID.
- Ssl
Vpn stringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- Ssl
Vpn stringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- Status string
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
-
[]Ssl
Vpn Client Cert Tag Args - Update
Time string - Modification time of the SSL client certificate.
- ca
Certificate String - CA certificate information.
- certificate
Status String - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client
Certificate String - Client certificate information.
- client
Key String - Client key information.
- creation
Time String - Creation time of the SSL client certificate.
- description String
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- expired
Time String - Expiration time of the SSL client certificate.
- open
Vpn StringClient Config - OpenVPN client configuration.
- ssl
Vpn StringClient Cert Id - SSL client certificate ID.
- ssl
Vpn StringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- ssl
Vpn StringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- status String
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
-
List<Ssl
Vpn Client Cert Tag> - update
Time String - Modification time of the SSL client certificate.
- ca
Certificate string - CA certificate information.
- certificate
Status string - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client
Certificate string - Client certificate information.
- client
Key string - Client key information.
- creation
Time string - Creation time of the SSL client certificate.
- description string
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- expired
Time string - Expiration time of the SSL client certificate.
- open
Vpn stringClient Config - OpenVPN client configuration.
- ssl
Vpn stringClient Cert Id - SSL client certificate ID.
- ssl
Vpn stringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- ssl
Vpn stringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- status string
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
-
Ssl
Vpn Client Cert Tag[] - update
Time string - Modification time of the SSL client certificate.
- ca_
certificate str - CA certificate information.
- certificate_
status str - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client_
certificate str - Client certificate information.
- client_
key str - Client key information.
- creation_
time str - Creation time of the SSL client certificate.
- description str
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- expired_
time str - Expiration time of the SSL client certificate.
- open_
vpn_ strclient_ config - OpenVPN client configuration.
- ssl_
vpn_ strclient_ cert_ id - SSL client certificate ID.
- ssl_
vpn_ strclient_ cert_ name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- ssl_
vpn_ strserver_ id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- status str
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
-
Sequence[Ssl
Vpn Client Cert Tag Args] - update_
time str - Modification time of the SSL client certificate.
- ca
Certificate String - CA certificate information.
- certificate
Status String - SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
- client
Certificate String - Client certificate information.
- client
Key String - Client key information.
- creation
Time String - Creation time of the SSL client certificate.
- description String
- Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
- expired
Time String - Expiration time of the SSL client certificate.
- open
Vpn StringClient Config - OpenVPN client configuration.
- ssl
Vpn StringClient Cert Id - SSL client certificate ID.
- ssl
Vpn StringClient Cert Name - Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
- ssl
Vpn StringServer Id - ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
- status String
- SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
- List<Property Map>
- update
Time String - Modification time of the SSL client certificate.
Supporting Types
SslVpnClientCertTag, SslVpnClientCertTagArgs
- Key string
- Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
- Value string
- Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
- Key string
- Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
- Value string
- Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
- key String
- Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
- value String
- Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
- key string
- Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
- value string
- Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
- key str
- Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
- value str
- Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
- key String
- Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
- value String
- Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
Import
$ pulumi import volcenginecc:vpn/sslVpnClientCert:SslVpnClientCert example "ssl_vpn_client_cert_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, May 7, 2026 by Volcengine
