published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
Provides unified certificate management service for HTTPS protocol. Certificates do not need to be uploaded to backend servers. Supports decryption processing on CLB instances, reducing CPU overhead on backend servers.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const certificatDemo = new volcenginecc.clb.Certificate("CertificatDemo", {
certificateName: "CertificatDemo",
privateKey: "-----BEGIN RSA PRIVATE KEY-----***----END RSA PRIVATE KEY-----",
publicKey: `-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----`,
description: "CertificateDemo Example",
projectName: "default",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
certificat_demo = volcenginecc.clb.Certificate("CertificatDemo",
certificate_name="CertificatDemo",
private_key="-----BEGIN RSA PRIVATE KEY-----***----END RSA PRIVATE KEY-----",
public_key="""-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----""",
description="CertificateDemo Example",
project_name="default",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/clb"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := clb.NewCertificate(ctx, "CertificatDemo", &clb.CertificateArgs{
CertificateName: pulumi.String("CertificatDemo"),
PrivateKey: pulumi.String("-----BEGIN RSA PRIVATE KEY-----***----END RSA PRIVATE KEY-----"),
PublicKey: pulumi.String("-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----\n-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----\n-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----"),
Description: pulumi.String("CertificateDemo Example"),
ProjectName: pulumi.String("default"),
Tags: clb.CertificateTagArray{
&clb.CertificateTagArgs{
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 certificatDemo = new Volcenginecc.Clb.Certificate("CertificatDemo", new()
{
CertificateName = "CertificatDemo",
PrivateKey = "-----BEGIN RSA PRIVATE KEY-----***----END RSA PRIVATE KEY-----",
PublicKey = @"-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----",
Description = "CertificateDemo Example",
ProjectName = "default",
Tags = new[]
{
new Volcenginecc.Clb.Inputs.CertificateTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.clb.Certificate;
import com.volcengine.volcenginecc.clb.CertificateArgs;
import com.pulumi.volcenginecc.clb.inputs.CertificateTagArgs;
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 certificatDemo = new Certificate("certificatDemo", CertificateArgs.builder()
.certificateName("CertificatDemo")
.privateKey("-----BEGIN RSA PRIVATE KEY-----***----END RSA PRIVATE KEY-----")
.publicKey("""
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE----- """)
.description("CertificateDemo Example")
.projectName("default")
.tags(CertificateTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
certificatDemo:
type: volcenginecc:clb:Certificate
name: CertificatDemo
properties:
certificateName: CertificatDemo
privateKey: '-----BEGIN RSA PRIVATE KEY-----***----END RSA PRIVATE KEY-----'
publicKey: |-
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----***-----END CERTIFICATE-----
description: CertificateDemo Example
projectName: default
tags:
- key: env
value: test
Create Certificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Certificate(name: string, args: CertificateArgs, opts?: CustomResourceOptions);@overload
def Certificate(resource_name: str,
args: CertificateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Certificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
private_key: Optional[str] = None,
public_key: Optional[str] = None,
certificate_name: Optional[str] = None,
description: Optional[str] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[CertificateTagArgs]] = None)func NewCertificate(ctx *Context, name string, args CertificateArgs, opts ...ResourceOption) (*Certificate, error)public Certificate(string name, CertificateArgs args, CustomResourceOptions? opts = null)
public Certificate(String name, CertificateArgs args)
public Certificate(String name, CertificateArgs args, CustomResourceOptions options)
type: volcenginecc:clb:Certificate
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 CertificateArgs
- 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 CertificateArgs
- 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 CertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CertificateArgs
- 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 volcengineccCertificateResource = new Volcenginecc.Clb.Certificate("volcengineccCertificateResource", new()
{
PrivateKey = "string",
PublicKey = "string",
CertificateName = "string",
Description = "string",
ProjectName = "string",
Tags = new[]
{
new Volcenginecc.Clb.Inputs.CertificateTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := clb.NewCertificate(ctx, "volcengineccCertificateResource", &clb.CertificateArgs{
PrivateKey: pulumi.String("string"),
PublicKey: pulumi.String("string"),
CertificateName: pulumi.String("string"),
Description: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Tags: clb.CertificateTagArray{
&clb.CertificateTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var volcengineccCertificateResource = new com.volcengine.volcenginecc.clb.Certificate("volcengineccCertificateResource", com.volcengine.volcenginecc.clb.CertificateArgs.builder()
.privateKey("string")
.publicKey("string")
.certificateName("string")
.description("string")
.projectName("string")
.tags(CertificateTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
volcenginecc_certificate_resource = volcenginecc.clb.Certificate("volcengineccCertificateResource",
private_key="string",
public_key="string",
certificate_name="string",
description="string",
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const volcengineccCertificateResource = new volcenginecc.clb.Certificate("volcengineccCertificateResource", {
privateKey: "string",
publicKey: "string",
certificateName: "string",
description: "string",
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcenginecc:clb:Certificate
properties:
certificateName: string
description: string
privateKey: string
projectName: string
publicKey: string
tags:
- key: string
value: string
Certificate 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 Certificate resource accepts the following input properties:
- Private
Key string - Certificate private key.
- Public
Key string - Certificate public key.
- Certificate
Name string - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- Description string
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Project
Name string - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
-
List<Volcengine.
Certificate Tag>
- Private
Key string - Certificate private key.
- Public
Key string - Certificate public key.
- Certificate
Name string - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- Description string
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Project
Name string - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
-
[]Certificate
Tag Args
- private
Key String - Certificate private key.
- public
Key String - Certificate public key.
- certificate
Name String - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- description String
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- project
Name String - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
-
List<Certificate
Tag>
- private
Key string - Certificate private key.
- public
Key string - Certificate public key.
- certificate
Name string - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- description string
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- project
Name string - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
-
Certificate
Tag[]
- private_
key str - Certificate private key.
- public_
key str - Certificate public key.
- certificate_
name str - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- description str
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- project_
name str - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
-
Sequence[Certificate
Tag Args]
- private
Key String - Certificate private key.
- public
Key String - Certificate public key.
- certificate
Name String - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- description String
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- project
Name String - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the Certificate resource produces the following output properties:
- Certificate
Id string - Certificate ID.
- Created
Time string - Certificate creation time.
- Domain
Name string - Certificate primary domain name.
- Expired
At string - Certificate expiration time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners List<string>
- ID of the listener associated with the certificate.
- Service
Managed bool - Managed resource status. true: managed resource. false: unmanaged resource.
- Subject
Alternative List<string>Names - List of alternate domain names for the certificate.
- Certificate
Id string - Certificate ID.
- Created
Time string - Certificate creation time.
- Domain
Name string - Certificate primary domain name.
- Expired
At string - Certificate expiration time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners []string
- ID of the listener associated with the certificate.
- Service
Managed bool - Managed resource status. true: managed resource. false: unmanaged resource.
- Subject
Alternative []stringNames - List of alternate domain names for the certificate.
- certificate
Id String - Certificate ID.
- created
Time String - Certificate creation time.
- domain
Name String - Certificate primary domain name.
- expired
At String - Certificate expiration time.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners List<String>
- ID of the listener associated with the certificate.
- service
Managed Boolean - Managed resource status. true: managed resource. false: unmanaged resource.
- subject
Alternative List<String>Names - List of alternate domain names for the certificate.
- certificate
Id string - Certificate ID.
- created
Time string - Certificate creation time.
- domain
Name string - Certificate primary domain name.
- expired
At string - Certificate expiration time.
- id string
- The provider-assigned unique ID for this managed resource.
- listeners string[]
- ID of the listener associated with the certificate.
- service
Managed boolean - Managed resource status. true: managed resource. false: unmanaged resource.
- subject
Alternative string[]Names - List of alternate domain names for the certificate.
- certificate_
id str - Certificate ID.
- created_
time str - Certificate creation time.
- domain_
name str - Certificate primary domain name.
- expired_
at str - Certificate expiration time.
- id str
- The provider-assigned unique ID for this managed resource.
- listeners Sequence[str]
- ID of the listener associated with the certificate.
- service_
managed bool - Managed resource status. true: managed resource. false: unmanaged resource.
- subject_
alternative_ Sequence[str]names - List of alternate domain names for the certificate.
- certificate
Id String - Certificate ID.
- created
Time String - Certificate creation time.
- domain
Name String - Certificate primary domain name.
- expired
At String - Certificate expiration time.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners List<String>
- ID of the listener associated with the certificate.
- service
Managed Boolean - Managed resource status. true: managed resource. false: unmanaged resource.
- subject
Alternative List<String>Names - List of alternate domain names for the certificate.
Look up Existing Certificate Resource
Get an existing Certificate 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?: CertificateState, opts?: CustomResourceOptions): Certificate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate_id: Optional[str] = None,
certificate_name: Optional[str] = None,
created_time: Optional[str] = None,
description: Optional[str] = None,
domain_name: Optional[str] = None,
expired_at: Optional[str] = None,
listeners: Optional[Sequence[str]] = None,
private_key: Optional[str] = None,
project_name: Optional[str] = None,
public_key: Optional[str] = None,
service_managed: Optional[bool] = None,
subject_alternative_names: Optional[Sequence[str]] = None,
tags: Optional[Sequence[CertificateTagArgs]] = None) -> Certificatefunc GetCertificate(ctx *Context, name string, id IDInput, state *CertificateState, opts ...ResourceOption) (*Certificate, error)public static Certificate Get(string name, Input<string> id, CertificateState? state, CustomResourceOptions? opts = null)public static Certificate get(String name, Output<String> id, CertificateState state, CustomResourceOptions options)resources: _: type: volcenginecc:clb:Certificate 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.
- Certificate
Id string - Certificate ID.
- Certificate
Name string - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- Created
Time string - Certificate creation time.
- Description string
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Domain
Name string - Certificate primary domain name.
- Expired
At string - Certificate expiration time.
- Listeners List<string>
- ID of the listener associated with the certificate.
- Private
Key string - Certificate private key.
- Project
Name string - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- Public
Key string - Certificate public key.
- Service
Managed bool - Managed resource status. true: managed resource. false: unmanaged resource.
- Subject
Alternative List<string>Names - List of alternate domain names for the certificate.
-
List<Volcengine.
Certificate Tag>
- Certificate
Id string - Certificate ID.
- Certificate
Name string - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- Created
Time string - Certificate creation time.
- Description string
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Domain
Name string - Certificate primary domain name.
- Expired
At string - Certificate expiration time.
- Listeners []string
- ID of the listener associated with the certificate.
- Private
Key string - Certificate private key.
- Project
Name string - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- Public
Key string - Certificate public key.
- Service
Managed bool - Managed resource status. true: managed resource. false: unmanaged resource.
- Subject
Alternative []stringNames - List of alternate domain names for the certificate.
-
[]Certificate
Tag Args
- certificate
Id String - Certificate ID.
- certificate
Name String - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- created
Time String - Certificate creation time.
- description String
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- domain
Name String - Certificate primary domain name.
- expired
At String - Certificate expiration time.
- listeners List<String>
- ID of the listener associated with the certificate.
- private
Key String - Certificate private key.
- project
Name String - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- public
Key String - Certificate public key.
- service
Managed Boolean - Managed resource status. true: managed resource. false: unmanaged resource.
- subject
Alternative List<String>Names - List of alternate domain names for the certificate.
-
List<Certificate
Tag>
- certificate
Id string - Certificate ID.
- certificate
Name string - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- created
Time string - Certificate creation time.
- description string
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- domain
Name string - Certificate primary domain name.
- expired
At string - Certificate expiration time.
- listeners string[]
- ID of the listener associated with the certificate.
- private
Key string - Certificate private key.
- project
Name string - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- public
Key string - Certificate public key.
- service
Managed boolean - Managed resource status. true: managed resource. false: unmanaged resource.
- subject
Alternative string[]Names - List of alternate domain names for the certificate.
-
Certificate
Tag[]
- certificate_
id str - Certificate ID.
- certificate_
name str - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- created_
time str - Certificate creation time.
- description str
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- domain_
name str - Certificate primary domain name.
- expired_
at str - Certificate expiration time.
- listeners Sequence[str]
- ID of the listener associated with the certificate.
- private_
key str - Certificate private key.
- project_
name str - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- public_
key str - Certificate public key.
- service_
managed bool - Managed resource status. true: managed resource. false: unmanaged resource.
- subject_
alternative_ Sequence[str]names - List of alternate domain names for the certificate.
-
Sequence[Certificate
Tag Args]
- certificate
Id String - Certificate ID.
- certificate
Name String - Certificate name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters.
- created
Time String - Certificate creation time.
- description String
- Certificate description. Default value is an empty string. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- domain
Name String - Certificate primary domain name.
- expired
At String - Certificate expiration time.
- listeners List<String>
- ID of the listener associated with the certificate.
- private
Key String - Certificate private key.
- project
Name String - Name of the project the certificate belongs to. If not specified, defaults to 'default'.
- public
Key String - Certificate public key.
- service
Managed Boolean - Managed resource status. true: managed resource. false: unmanaged resource.
- subject
Alternative List<String>Names - List of alternate domain names for the certificate.
- List<Property Map>
Supporting Types
CertificateTag, CertificateTagArgs
Import
$ pulumi import volcenginecc:clb/certificate:Certificate example "certificate_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, Apr 23, 2026 by Volcengine
