1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. clb
  6. Certificate
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
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:

    PrivateKey string
    Certificate private key.
    PublicKey string
    Certificate public key.
    CertificateName 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.
    ProjectName string
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    Tags List<Volcengine.CertificateTag>
    PrivateKey string
    Certificate private key.
    PublicKey string
    Certificate public key.
    CertificateName 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.
    ProjectName string
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    Tags []CertificateTagArgs
    privateKey String
    Certificate private key.
    publicKey String
    Certificate public key.
    certificateName 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.
    projectName String
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    tags List<CertificateTag>
    privateKey string
    Certificate private key.
    publicKey string
    Certificate public key.
    certificateName 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.
    projectName string
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    tags CertificateTag[]
    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'.
    tags Sequence[CertificateTagArgs]
    privateKey String
    Certificate private key.
    publicKey String
    Certificate public key.
    certificateName 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.
    projectName String
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    tags List<Property Map>

    Outputs

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

    CertificateId string
    Certificate ID.
    CreatedTime string
    Certificate creation time.
    DomainName string
    Certificate primary domain name.
    ExpiredAt 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.
    ServiceManaged bool
    Managed resource status. true: managed resource. false: unmanaged resource.
    SubjectAlternativeNames List<string>
    List of alternate domain names for the certificate.
    CertificateId string
    Certificate ID.
    CreatedTime string
    Certificate creation time.
    DomainName string
    Certificate primary domain name.
    ExpiredAt 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.
    ServiceManaged bool
    Managed resource status. true: managed resource. false: unmanaged resource.
    SubjectAlternativeNames []string
    List of alternate domain names for the certificate.
    certificateId String
    Certificate ID.
    createdTime String
    Certificate creation time.
    domainName String
    Certificate primary domain name.
    expiredAt 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.
    serviceManaged Boolean
    Managed resource status. true: managed resource. false: unmanaged resource.
    subjectAlternativeNames List<String>
    List of alternate domain names for the certificate.
    certificateId string
    Certificate ID.
    createdTime string
    Certificate creation time.
    domainName string
    Certificate primary domain name.
    expiredAt 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.
    serviceManaged boolean
    Managed resource status. true: managed resource. false: unmanaged resource.
    subjectAlternativeNames string[]
    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_names Sequence[str]
    List of alternate domain names for the certificate.
    certificateId String
    Certificate ID.
    createdTime String
    Certificate creation time.
    domainName String
    Certificate primary domain name.
    expiredAt 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.
    serviceManaged Boolean
    Managed resource status. true: managed resource. false: unmanaged resource.
    subjectAlternativeNames List<String>
    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) -> Certificate
    func 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.
    The following state arguments are supported:
    CertificateId string
    Certificate ID.
    CertificateName 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.
    CreatedTime 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.
    DomainName string
    Certificate primary domain name.
    ExpiredAt string
    Certificate expiration time.
    Listeners List<string>
    ID of the listener associated with the certificate.
    PrivateKey string
    Certificate private key.
    ProjectName string
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    PublicKey string
    Certificate public key.
    ServiceManaged bool
    Managed resource status. true: managed resource. false: unmanaged resource.
    SubjectAlternativeNames List<string>
    List of alternate domain names for the certificate.
    Tags List<Volcengine.CertificateTag>
    CertificateId string
    Certificate ID.
    CertificateName 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.
    CreatedTime 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.
    DomainName string
    Certificate primary domain name.
    ExpiredAt string
    Certificate expiration time.
    Listeners []string
    ID of the listener associated with the certificate.
    PrivateKey string
    Certificate private key.
    ProjectName string
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    PublicKey string
    Certificate public key.
    ServiceManaged bool
    Managed resource status. true: managed resource. false: unmanaged resource.
    SubjectAlternativeNames []string
    List of alternate domain names for the certificate.
    Tags []CertificateTagArgs
    certificateId String
    Certificate ID.
    certificateName 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.
    createdTime 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.
    domainName String
    Certificate primary domain name.
    expiredAt String
    Certificate expiration time.
    listeners List<String>
    ID of the listener associated with the certificate.
    privateKey String
    Certificate private key.
    projectName String
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    publicKey String
    Certificate public key.
    serviceManaged Boolean
    Managed resource status. true: managed resource. false: unmanaged resource.
    subjectAlternativeNames List<String>
    List of alternate domain names for the certificate.
    tags List<CertificateTag>
    certificateId string
    Certificate ID.
    certificateName 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.
    createdTime 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.
    domainName string
    Certificate primary domain name.
    expiredAt string
    Certificate expiration time.
    listeners string[]
    ID of the listener associated with the certificate.
    privateKey string
    Certificate private key.
    projectName string
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    publicKey string
    Certificate public key.
    serviceManaged boolean
    Managed resource status. true: managed resource. false: unmanaged resource.
    subjectAlternativeNames string[]
    List of alternate domain names for the certificate.
    tags CertificateTag[]
    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_names Sequence[str]
    List of alternate domain names for the certificate.
    tags Sequence[CertificateTagArgs]
    certificateId String
    Certificate ID.
    certificateName 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.
    createdTime 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.
    domainName String
    Certificate primary domain name.
    expiredAt String
    Certificate expiration time.
    listeners List<String>
    ID of the listener associated with the certificate.
    privateKey String
    Certificate private key.
    projectName String
    Name of the project the certificate belongs to. If not specified, defaults to 'default'.
    publicKey String
    Certificate public key.
    serviceManaged Boolean
    Managed resource status. true: managed resource. false: unmanaged resource.
    subjectAlternativeNames List<String>
    List of alternate domain names for the certificate.
    tags List<Property Map>

    Supporting Types

    CertificateTag, CertificateTagArgs

    Key string
    User tag key.
    Value string
    User tag value.
    Key string
    User tag key.
    Value string
    User tag value.
    key String
    User tag key.
    value String
    User tag value.
    key string
    User tag key.
    value string
    User tag value.
    key str
    User tag key.
    value str
    User tag value.
    key String
    User tag key.
    value String
    User tag value.

    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 volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.