published on Friday, May 1, 2026 by tencentcloudstack
published on Friday, May 1, 2026 by tencentcloudstack
Provides a resource to create a TEO certificate config
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const certificate = new tencentcloud.TeoCertificateConfig("certificate", {
host: "test.tencentcloud-terraform-provider.cn",
mode: "eofreecert",
zoneId: "zone-2o1t24kgy362",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
certificate = tencentcloud.TeoCertificateConfig("certificate",
host="test.tencentcloud-terraform-provider.cn",
mode="eofreecert",
zone_id="zone-2o1t24kgy362")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewTeoCertificateConfig(ctx, "certificate", &tencentcloud.TeoCertificateConfigArgs{
Host: pulumi.String("test.tencentcloud-terraform-provider.cn"),
Mode: pulumi.String("eofreecert"),
ZoneId: pulumi.String("zone-2o1t24kgy362"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var certificate = new Tencentcloud.TeoCertificateConfig("certificate", new()
{
Host = "test.tencentcloud-terraform-provider.cn",
Mode = "eofreecert",
ZoneId = "zone-2o1t24kgy362",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoCertificateConfig;
import com.pulumi.tencentcloud.TeoCertificateConfigArgs;
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 certificate = new TeoCertificateConfig("certificate", TeoCertificateConfigArgs.builder()
.host("test.tencentcloud-terraform-provider.cn")
.mode("eofreecert")
.zoneId("zone-2o1t24kgy362")
.build());
}
}
resources:
certificate:
type: tencentcloud:TeoCertificateConfig
properties:
host: test.tencentcloud-terraform-provider.cn
mode: eofreecert
zoneId: zone-2o1t24kgy362
Configure SSL certificate
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const certificate = new tencentcloud.TeoCertificateConfig("certificate", {
host: "test.tencentcloud-terraform-provider.cn",
mode: "sslcert",
zoneId: "zone-2o1t24kgy362",
serverCertInfos: [{
certId: "8xiUJIJd",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
certificate = tencentcloud.TeoCertificateConfig("certificate",
host="test.tencentcloud-terraform-provider.cn",
mode="sslcert",
zone_id="zone-2o1t24kgy362",
server_cert_infos=[{
"cert_id": "8xiUJIJd",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewTeoCertificateConfig(ctx, "certificate", &tencentcloud.TeoCertificateConfigArgs{
Host: pulumi.String("test.tencentcloud-terraform-provider.cn"),
Mode: pulumi.String("sslcert"),
ZoneId: pulumi.String("zone-2o1t24kgy362"),
ServerCertInfos: tencentcloud.TeoCertificateConfigServerCertInfoArray{
&tencentcloud.TeoCertificateConfigServerCertInfoArgs{
CertId: pulumi.String("8xiUJIJd"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var certificate = new Tencentcloud.TeoCertificateConfig("certificate", new()
{
Host = "test.tencentcloud-terraform-provider.cn",
Mode = "sslcert",
ZoneId = "zone-2o1t24kgy362",
ServerCertInfos = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigServerCertInfoArgs
{
CertId = "8xiUJIJd",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoCertificateConfig;
import com.pulumi.tencentcloud.TeoCertificateConfigArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigServerCertInfoArgs;
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 certificate = new TeoCertificateConfig("certificate", TeoCertificateConfigArgs.builder()
.host("test.tencentcloud-terraform-provider.cn")
.mode("sslcert")
.zoneId("zone-2o1t24kgy362")
.serverCertInfos(TeoCertificateConfigServerCertInfoArgs.builder()
.certId("8xiUJIJd")
.build())
.build());
}
}
resources:
certificate:
type: tencentcloud:TeoCertificateConfig
properties:
host: test.tencentcloud-terraform-provider.cn
mode: sslcert
zoneId: zone-2o1t24kgy362
serverCertInfos:
- certId: 8xiUJIJd
Configure SSL certificate with edge mutual TLS
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const certificate = new tencentcloud.TeoCertificateConfig("certificate", {
host: "test.tencentcloud-terraform-provider.cn",
mode: "sslcert",
zoneId: "zone-2o1t24kgy362",
serverCertInfos: [{
certId: "8xiUJIJd",
}],
clientCertInfo: {
"switch": "on",
certInfos: [{
certId: "cert-client-001",
}],
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
certificate = tencentcloud.TeoCertificateConfig("certificate",
host="test.tencentcloud-terraform-provider.cn",
mode="sslcert",
zone_id="zone-2o1t24kgy362",
server_cert_infos=[{
"cert_id": "8xiUJIJd",
}],
client_cert_info={
"switch": "on",
"cert_infos": [{
"cert_id": "cert-client-001",
}],
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewTeoCertificateConfig(ctx, "certificate", &tencentcloud.TeoCertificateConfigArgs{
Host: pulumi.String("test.tencentcloud-terraform-provider.cn"),
Mode: pulumi.String("sslcert"),
ZoneId: pulumi.String("zone-2o1t24kgy362"),
ServerCertInfos: tencentcloud.TeoCertificateConfigServerCertInfoArray{
&tencentcloud.TeoCertificateConfigServerCertInfoArgs{
CertId: pulumi.String("8xiUJIJd"),
},
},
ClientCertInfo: &tencentcloud.TeoCertificateConfigClientCertInfoArgs{
Switch: pulumi.String("on"),
CertInfos: tencentcloud.TeoCertificateConfigClientCertInfoCertInfoArray{
&tencentcloud.TeoCertificateConfigClientCertInfoCertInfoArgs{
CertId: pulumi.String("cert-client-001"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var certificate = new Tencentcloud.TeoCertificateConfig("certificate", new()
{
Host = "test.tencentcloud-terraform-provider.cn",
Mode = "sslcert",
ZoneId = "zone-2o1t24kgy362",
ServerCertInfos = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigServerCertInfoArgs
{
CertId = "8xiUJIJd",
},
},
ClientCertInfo = new Tencentcloud.Inputs.TeoCertificateConfigClientCertInfoArgs
{
Switch = "on",
CertInfos = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigClientCertInfoCertInfoArgs
{
CertId = "cert-client-001",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoCertificateConfig;
import com.pulumi.tencentcloud.TeoCertificateConfigArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigServerCertInfoArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigClientCertInfoArgs;
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 certificate = new TeoCertificateConfig("certificate", TeoCertificateConfigArgs.builder()
.host("test.tencentcloud-terraform-provider.cn")
.mode("sslcert")
.zoneId("zone-2o1t24kgy362")
.serverCertInfos(TeoCertificateConfigServerCertInfoArgs.builder()
.certId("8xiUJIJd")
.build())
.clientCertInfo(TeoCertificateConfigClientCertInfoArgs.builder()
.switch_("on")
.certInfos(TeoCertificateConfigClientCertInfoCertInfoArgs.builder()
.certId("cert-client-001")
.build())
.build())
.build());
}
}
resources:
certificate:
type: tencentcloud:TeoCertificateConfig
properties:
host: test.tencentcloud-terraform-provider.cn
mode: sslcert
zoneId: zone-2o1t24kgy362
serverCertInfos:
- certId: 8xiUJIJd
clientCertInfo:
switch: on
certInfos:
- certId: cert-client-001
Configure SSL certificate with upstream mutual TLS
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const certificate = new tencentcloud.TeoCertificateConfig("certificate", {
host: "test.tencentcloud-terraform-provider.cn",
mode: "sslcert",
zoneId: "zone-2o1t24kgy362",
serverCertInfos: [{
certId: "8xiUJIJd",
}],
upstreamCertInfo: {
upstreamMutualTls: {
"switch": "on",
certInfos: [{
certId: "cert-upstream-001",
}],
},
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
certificate = tencentcloud.TeoCertificateConfig("certificate",
host="test.tencentcloud-terraform-provider.cn",
mode="sslcert",
zone_id="zone-2o1t24kgy362",
server_cert_infos=[{
"cert_id": "8xiUJIJd",
}],
upstream_cert_info={
"upstream_mutual_tls": {
"switch": "on",
"cert_infos": [{
"cert_id": "cert-upstream-001",
}],
},
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewTeoCertificateConfig(ctx, "certificate", &tencentcloud.TeoCertificateConfigArgs{
Host: pulumi.String("test.tencentcloud-terraform-provider.cn"),
Mode: pulumi.String("sslcert"),
ZoneId: pulumi.String("zone-2o1t24kgy362"),
ServerCertInfos: tencentcloud.TeoCertificateConfigServerCertInfoArray{
&tencentcloud.TeoCertificateConfigServerCertInfoArgs{
CertId: pulumi.String("8xiUJIJd"),
},
},
UpstreamCertInfo: &tencentcloud.TeoCertificateConfigUpstreamCertInfoArgs{
UpstreamMutualTls: &tencentcloud.TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsArgs{
Switch: pulumi.String("on"),
CertInfos: tencentcloud.TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsCertInfoArray{
&tencentcloud.TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsCertInfoArgs{
CertId: pulumi.String("cert-upstream-001"),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var certificate = new Tencentcloud.TeoCertificateConfig("certificate", new()
{
Host = "test.tencentcloud-terraform-provider.cn",
Mode = "sslcert",
ZoneId = "zone-2o1t24kgy362",
ServerCertInfos = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigServerCertInfoArgs
{
CertId = "8xiUJIJd",
},
},
UpstreamCertInfo = new Tencentcloud.Inputs.TeoCertificateConfigUpstreamCertInfoArgs
{
UpstreamMutualTls = new Tencentcloud.Inputs.TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsArgs
{
Switch = "on",
CertInfos = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsCertInfoArgs
{
CertId = "cert-upstream-001",
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoCertificateConfig;
import com.pulumi.tencentcloud.TeoCertificateConfigArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigServerCertInfoArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigUpstreamCertInfoArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsArgs;
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 certificate = new TeoCertificateConfig("certificate", TeoCertificateConfigArgs.builder()
.host("test.tencentcloud-terraform-provider.cn")
.mode("sslcert")
.zoneId("zone-2o1t24kgy362")
.serverCertInfos(TeoCertificateConfigServerCertInfoArgs.builder()
.certId("8xiUJIJd")
.build())
.upstreamCertInfo(TeoCertificateConfigUpstreamCertInfoArgs.builder()
.upstreamMutualTls(TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsArgs.builder()
.switch_("on")
.certInfos(TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsCertInfoArgs.builder()
.certId("cert-upstream-001")
.build())
.build())
.build())
.build());
}
}
resources:
certificate:
type: tencentcloud:TeoCertificateConfig
properties:
host: test.tencentcloud-terraform-provider.cn
mode: sslcert
zoneId: zone-2o1t24kgy362
serverCertInfos:
- certId: 8xiUJIJd
upstreamCertInfo:
upstreamMutualTls:
switch: on
certInfos:
- certId: cert-upstream-001
Configure SSL certificate with upstream certificate verification
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const certificate = new tencentcloud.TeoCertificateConfig("certificate", {
host: "test.tencentcloud-terraform-provider.cn",
mode: "sslcert",
zoneId: "zone-2o1t24kgy362",
serverCertInfos: [{
certId: "8xiUJIJd",
}],
upstreamCertInfo: {
upstreamCertificateVerify: {
verificationMode: "custom_ca",
customCaCerts: [{
certId: "cert-ca-001",
}],
},
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
certificate = tencentcloud.TeoCertificateConfig("certificate",
host="test.tencentcloud-terraform-provider.cn",
mode="sslcert",
zone_id="zone-2o1t24kgy362",
server_cert_infos=[{
"cert_id": "8xiUJIJd",
}],
upstream_cert_info={
"upstream_certificate_verify": {
"verification_mode": "custom_ca",
"custom_ca_certs": [{
"cert_id": "cert-ca-001",
}],
},
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewTeoCertificateConfig(ctx, "certificate", &tencentcloud.TeoCertificateConfigArgs{
Host: pulumi.String("test.tencentcloud-terraform-provider.cn"),
Mode: pulumi.String("sslcert"),
ZoneId: pulumi.String("zone-2o1t24kgy362"),
ServerCertInfos: tencentcloud.TeoCertificateConfigServerCertInfoArray{
&tencentcloud.TeoCertificateConfigServerCertInfoArgs{
CertId: pulumi.String("8xiUJIJd"),
},
},
UpstreamCertInfo: &tencentcloud.TeoCertificateConfigUpstreamCertInfoArgs{
UpstreamCertificateVerify: &tencentcloud.TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyArgs{
VerificationMode: pulumi.String("custom_ca"),
CustomCaCerts: tencentcloud.TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyCustomCaCertArray{
&tencentcloud.TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyCustomCaCertArgs{
CertId: pulumi.String("cert-ca-001"),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var certificate = new Tencentcloud.TeoCertificateConfig("certificate", new()
{
Host = "test.tencentcloud-terraform-provider.cn",
Mode = "sslcert",
ZoneId = "zone-2o1t24kgy362",
ServerCertInfos = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigServerCertInfoArgs
{
CertId = "8xiUJIJd",
},
},
UpstreamCertInfo = new Tencentcloud.Inputs.TeoCertificateConfigUpstreamCertInfoArgs
{
UpstreamCertificateVerify = new Tencentcloud.Inputs.TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyArgs
{
VerificationMode = "custom_ca",
CustomCaCerts = new[]
{
new Tencentcloud.Inputs.TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyCustomCaCertArgs
{
CertId = "cert-ca-001",
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoCertificateConfig;
import com.pulumi.tencentcloud.TeoCertificateConfigArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigServerCertInfoArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigUpstreamCertInfoArgs;
import com.pulumi.tencentcloud.inputs.TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyArgs;
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 certificate = new TeoCertificateConfig("certificate", TeoCertificateConfigArgs.builder()
.host("test.tencentcloud-terraform-provider.cn")
.mode("sslcert")
.zoneId("zone-2o1t24kgy362")
.serverCertInfos(TeoCertificateConfigServerCertInfoArgs.builder()
.certId("8xiUJIJd")
.build())
.upstreamCertInfo(TeoCertificateConfigUpstreamCertInfoArgs.builder()
.upstreamCertificateVerify(TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyArgs.builder()
.verificationMode("custom_ca")
.customCaCerts(TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyCustomCaCertArgs.builder()
.certId("cert-ca-001")
.build())
.build())
.build())
.build());
}
}
resources:
certificate:
type: tencentcloud:TeoCertificateConfig
properties:
host: test.tencentcloud-terraform-provider.cn
mode: sslcert
zoneId: zone-2o1t24kgy362
serverCertInfos:
- certId: 8xiUJIJd
upstreamCertInfo:
upstreamCertificateVerify:
verificationMode: custom_ca
customCaCerts:
- certId: cert-ca-001
Create TeoCertificateConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TeoCertificateConfig(name: string, args: TeoCertificateConfigArgs, opts?: CustomResourceOptions);@overload
def TeoCertificateConfig(resource_name: str,
args: TeoCertificateConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TeoCertificateConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
host: Optional[str] = None,
zone_id: Optional[str] = None,
client_cert_info: Optional[TeoCertificateConfigClientCertInfoArgs] = None,
mode: Optional[str] = None,
server_cert_infos: Optional[Sequence[TeoCertificateConfigServerCertInfoArgs]] = None,
teo_certificate_config_id: Optional[str] = None,
timeouts: Optional[TeoCertificateConfigTimeoutsArgs] = None,
upstream_cert_info: Optional[TeoCertificateConfigUpstreamCertInfoArgs] = None)func NewTeoCertificateConfig(ctx *Context, name string, args TeoCertificateConfigArgs, opts ...ResourceOption) (*TeoCertificateConfig, error)public TeoCertificateConfig(string name, TeoCertificateConfigArgs args, CustomResourceOptions? opts = null)
public TeoCertificateConfig(String name, TeoCertificateConfigArgs args)
public TeoCertificateConfig(String name, TeoCertificateConfigArgs args, CustomResourceOptions options)
type: tencentcloud:TeoCertificateConfig
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 TeoCertificateConfigArgs
- 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 TeoCertificateConfigArgs
- 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 TeoCertificateConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeoCertificateConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeoCertificateConfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
TeoCertificateConfig 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 TeoCertificateConfig resource accepts the following input properties:
- Host string
- Acceleration domain name that needs to modify the certificate configuration.
- Zone
Id string - Site ID.
- Client
Cert TeoInfo Certificate Config Client Cert Info - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Mode string
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - Server
Cert List<TeoInfos Certificate Config Server Cert Info> - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- Teo
Certificate stringConfig Id - ID of the resource.
- Timeouts
Teo
Certificate Config Timeouts - Upstream
Cert TeoInfo Certificate Config Upstream Cert Info - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Host string
- Acceleration domain name that needs to modify the certificate configuration.
- Zone
Id string - Site ID.
- Client
Cert TeoInfo Certificate Config Client Cert Info Args - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Mode string
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - Server
Cert []TeoInfos Certificate Config Server Cert Info Args - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- Teo
Certificate stringConfig Id - ID of the resource.
- Timeouts
Teo
Certificate Config Timeouts Args - Upstream
Cert TeoInfo Certificate Config Upstream Cert Info Args - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host String
- Acceleration domain name that needs to modify the certificate configuration.
- zone
Id String - Site ID.
- client
Cert TeoInfo Certificate Config Client Cert Info - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- mode String
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server
Cert List<TeoInfos Certificate Config Server Cert Info> - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo
Certificate StringConfig Id - ID of the resource.
- timeouts
Teo
Certificate Config Timeouts - upstream
Cert TeoInfo Certificate Config Upstream Cert Info - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host string
- Acceleration domain name that needs to modify the certificate configuration.
- zone
Id string - Site ID.
- client
Cert TeoInfo Certificate Config Client Cert Info - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- mode string
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server
Cert TeoInfos Certificate Config Server Cert Info[] - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo
Certificate stringConfig Id - ID of the resource.
- timeouts
Teo
Certificate Config Timeouts - upstream
Cert TeoInfo Certificate Config Upstream Cert Info - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host str
- Acceleration domain name that needs to modify the certificate configuration.
- zone_
id str - Site ID.
- client_
cert_ Teoinfo Certificate Config Client Cert Info Args - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- mode str
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server_
cert_ Sequence[Teoinfos Certificate Config Server Cert Info Args] - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo_
certificate_ strconfig_ id - ID of the resource.
- timeouts
Teo
Certificate Config Timeouts Args - upstream_
cert_ Teoinfo Certificate Config Upstream Cert Info Args - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host String
- Acceleration domain name that needs to modify the certificate configuration.
- zone
Id String - Site ID.
- client
Cert Property MapInfo - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- mode String
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server
Cert List<Property Map>Infos - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo
Certificate StringConfig Id - ID of the resource.
- timeouts Property Map
- upstream
Cert Property MapInfo - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
Outputs
All input properties are implicitly available as output properties. Additionally, the TeoCertificateConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing TeoCertificateConfig Resource
Get an existing TeoCertificateConfig 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?: TeoCertificateConfigState, opts?: CustomResourceOptions): TeoCertificateConfig@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
client_cert_info: Optional[TeoCertificateConfigClientCertInfoArgs] = None,
host: Optional[str] = None,
mode: Optional[str] = None,
server_cert_infos: Optional[Sequence[TeoCertificateConfigServerCertInfoArgs]] = None,
teo_certificate_config_id: Optional[str] = None,
timeouts: Optional[TeoCertificateConfigTimeoutsArgs] = None,
upstream_cert_info: Optional[TeoCertificateConfigUpstreamCertInfoArgs] = None,
zone_id: Optional[str] = None) -> TeoCertificateConfigfunc GetTeoCertificateConfig(ctx *Context, name string, id IDInput, state *TeoCertificateConfigState, opts ...ResourceOption) (*TeoCertificateConfig, error)public static TeoCertificateConfig Get(string name, Input<string> id, TeoCertificateConfigState? state, CustomResourceOptions? opts = null)public static TeoCertificateConfig get(String name, Output<String> id, TeoCertificateConfigState state, CustomResourceOptions options)resources: _: type: tencentcloud:TeoCertificateConfig 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.
- Client
Cert TeoInfo Certificate Config Client Cert Info - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Host string
- Acceleration domain name that needs to modify the certificate configuration.
- Mode string
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - Server
Cert List<TeoInfos Certificate Config Server Cert Info> - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- Teo
Certificate stringConfig Id - ID of the resource.
- Timeouts
Teo
Certificate Config Timeouts - Upstream
Cert TeoInfo Certificate Config Upstream Cert Info - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Zone
Id string - Site ID.
- Client
Cert TeoInfo Certificate Config Client Cert Info Args - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Host string
- Acceleration domain name that needs to modify the certificate configuration.
- Mode string
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - Server
Cert []TeoInfos Certificate Config Server Cert Info Args - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- Teo
Certificate stringConfig Id - ID of the resource.
- Timeouts
Teo
Certificate Config Timeouts Args - Upstream
Cert TeoInfo Certificate Config Upstream Cert Info Args - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- Zone
Id string - Site ID.
- client
Cert TeoInfo Certificate Config Client Cert Info - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host String
- Acceleration domain name that needs to modify the certificate configuration.
- mode String
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server
Cert List<TeoInfos Certificate Config Server Cert Info> - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo
Certificate StringConfig Id - ID of the resource.
- timeouts
Teo
Certificate Config Timeouts - upstream
Cert TeoInfo Certificate Config Upstream Cert Info - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- zone
Id String - Site ID.
- client
Cert TeoInfo Certificate Config Client Cert Info - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host string
- Acceleration domain name that needs to modify the certificate configuration.
- mode string
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server
Cert TeoInfos Certificate Config Server Cert Info[] - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo
Certificate stringConfig Id - ID of the resource.
- timeouts
Teo
Certificate Config Timeouts - upstream
Cert TeoInfo Certificate Config Upstream Cert Info - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- zone
Id string - Site ID.
- client_
cert_ Teoinfo Certificate Config Client Cert Info Args - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host str
- Acceleration domain name that needs to modify the certificate configuration.
- mode str
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server_
cert_ Sequence[Teoinfos Certificate Config Server Cert Info Args] - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo_
certificate_ strconfig_ id - ID of the resource.
- timeouts
Teo
Certificate Config Timeouts Args - upstream_
cert_ Teoinfo Certificate Config Upstream Cert Info Args - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- zone_
id str - Site ID.
- client
Cert Property MapInfo - Edge mutual TLS authentication configuration, where client CA certificates are deployed on EO nodes for client-to-EO-node authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- host String
- Acceleration domain name that needs to modify the certificate configuration.
- mode String
- Mode of configuring the certificate, the values are:
disable: Do not configure the certificate;eofreecert: Configure EdgeOne free certificate;eofreecert_manual: Deploy a free certificate applied for through DNS delegation validation or file validation;sslcert: Configure SSL certificate. If not filled in, the default value isdisable. - server
Cert List<Property Map>Infos - SSL certificate configuration, this parameter takes effect only when mode = sslcert, just enter the corresponding CertId. You can go to the SSL certificate list to view the CertId.
- teo
Certificate StringConfig Id - ID of the resource.
- timeouts Property Map
- upstream
Cert Property MapInfo - Configures the certificate presented by the EO node during origin-pull for mutual TLS authentication. Disabled by default; leaving the field blank will retain the current configuration. This feature is currently in beta testing. please contact us to request access.
- zone
Id String - Site ID.
Supporting Types
TeoCertificateConfigClientCertInfo, TeoCertificateConfigClientCertInfoArgs
- Switch string
- Edge mutual TLS configuration switch, the values are:
on: enable;off: disable. - Cert
Infos List<TeoCertificate Config Client Cert Info Cert Info> - Mutual TLS certificate list. Note: When using ClientCertInfo as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- Switch string
- Edge mutual TLS configuration switch, the values are:
on: enable;off: disable. - Cert
Infos []TeoCertificate Config Client Cert Info Cert Info - Mutual TLS certificate list. Note: When using ClientCertInfo as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch_ String
- Edge mutual TLS configuration switch, the values are:
on: enable;off: disable. - cert
Infos List<TeoCertificate Config Client Cert Info Cert Info> - Mutual TLS certificate list. Note: When using ClientCertInfo as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch string
- Edge mutual TLS configuration switch, the values are:
on: enable;off: disable. - cert
Infos TeoCertificate Config Client Cert Info Cert Info[] - Mutual TLS certificate list. Note: When using ClientCertInfo as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch str
- Edge mutual TLS configuration switch, the values are:
on: enable;off: disable. - cert_
infos Sequence[TeoCertificate Config Client Cert Info Cert Info] - Mutual TLS certificate list. Note: When using ClientCertInfo as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch String
- Edge mutual TLS configuration switch, the values are:
on: enable;off: disable. - cert
Infos List<Property Map> - Mutual TLS certificate list. Note: When using ClientCertInfo as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
TeoCertificateConfigClientCertInfoCertInfo, TeoCertificateConfigClientCertInfoCertInfoArgs
- Alias string
- Alias of the certificate.
- Cert
Id string - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- Deploy
Time string - Time when the certificate is deployed.
- Expire
Time string - The certificate expiration time.
- Sign
Algo string - Signature algorithm.
- Status string
- Certificate status.
- Type string
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate.
- Alias string
- Alias of the certificate.
- Cert
Id string - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- Deploy
Time string - Time when the certificate is deployed.
- Expire
Time string - The certificate expiration time.
- Sign
Algo string - Signature algorithm.
- Status string
- Certificate status.
- Type string
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate.
- alias String
- Alias of the certificate.
- cert
Id String - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy
Time String - Time when the certificate is deployed.
- expire
Time String - The certificate expiration time.
- sign
Algo String - Signature algorithm.
- status String
- Certificate status.
- type String
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate.
- alias string
- Alias of the certificate.
- cert
Id string - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy
Time string - Time when the certificate is deployed.
- expire
Time string - The certificate expiration time.
- sign
Algo string - Signature algorithm.
- status string
- Certificate status.
- type string
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate.
- alias str
- Alias of the certificate.
- cert_
id str - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy_
time str - Time when the certificate is deployed.
- expire_
time str - The certificate expiration time.
- sign_
algo str - Signature algorithm.
- status str
- Certificate status.
- type str
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate.
- alias String
- Alias of the certificate.
- cert
Id String - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy
Time String - Time when the certificate is deployed.
- expire
Time String - The certificate expiration time.
- sign
Algo String - Signature algorithm.
- status String
- Certificate status.
- type String
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate.
TeoCertificateConfigServerCertInfo, TeoCertificateConfigServerCertInfoArgs
- Cert
Id string - ID of the server certificate.Note: This field may return null, indicating that no valid values can be obtained.
- Alias string
- Alias of the certificate.Note: This field may return null, indicating that no valid values can be obtained.
- Common
Name string - Domain name of the certificate. Note: This field may return
null, indicating that no valid value can be obtained. - Deploy
Time string - Time when the certificate is deployed. Note: This field may return null, indicating that no valid values can be obtained.
- Expire
Time string - Time when the certificate expires. Note: This field may return null, indicating that no valid values can be obtained.
- Sign
Algo string - Signature algorithm. Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate. Note: This field may returnnull, indicating that no valid value can be obtained.
- Cert
Id string - ID of the server certificate.Note: This field may return null, indicating that no valid values can be obtained.
- Alias string
- Alias of the certificate.Note: This field may return null, indicating that no valid values can be obtained.
- Common
Name string - Domain name of the certificate. Note: This field may return
null, indicating that no valid value can be obtained. - Deploy
Time string - Time when the certificate is deployed. Note: This field may return null, indicating that no valid values can be obtained.
- Expire
Time string - Time when the certificate expires. Note: This field may return null, indicating that no valid values can be obtained.
- Sign
Algo string - Signature algorithm. Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate. Note: This field may returnnull, indicating that no valid value can be obtained.
- cert
Id String - ID of the server certificate.Note: This field may return null, indicating that no valid values can be obtained.
- alias String
- Alias of the certificate.Note: This field may return null, indicating that no valid values can be obtained.
- common
Name String - Domain name of the certificate. Note: This field may return
null, indicating that no valid value can be obtained. - deploy
Time String - Time when the certificate is deployed. Note: This field may return null, indicating that no valid values can be obtained.
- expire
Time String - Time when the certificate expires. Note: This field may return null, indicating that no valid values can be obtained.
- sign
Algo String - Signature algorithm. Note: This field may return null, indicating that no valid values can be obtained.
- type String
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate. Note: This field may returnnull, indicating that no valid value can be obtained.
- cert
Id string - ID of the server certificate.Note: This field may return null, indicating that no valid values can be obtained.
- alias string
- Alias of the certificate.Note: This field may return null, indicating that no valid values can be obtained.
- common
Name string - Domain name of the certificate. Note: This field may return
null, indicating that no valid value can be obtained. - deploy
Time string - Time when the certificate is deployed. Note: This field may return null, indicating that no valid values can be obtained.
- expire
Time string - Time when the certificate expires. Note: This field may return null, indicating that no valid values can be obtained.
- sign
Algo string - Signature algorithm. Note: This field may return null, indicating that no valid values can be obtained.
- type string
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate. Note: This field may returnnull, indicating that no valid value can be obtained.
- cert_
id str - ID of the server certificate.Note: This field may return null, indicating that no valid values can be obtained.
- alias str
- Alias of the certificate.Note: This field may return null, indicating that no valid values can be obtained.
- common_
name str - Domain name of the certificate. Note: This field may return
null, indicating that no valid value can be obtained. - deploy_
time str - Time when the certificate is deployed. Note: This field may return null, indicating that no valid values can be obtained.
- expire_
time str - Time when the certificate expires. Note: This field may return null, indicating that no valid values can be obtained.
- sign_
algo str - Signature algorithm. Note: This field may return null, indicating that no valid values can be obtained.
- type str
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate. Note: This field may returnnull, indicating that no valid value can be obtained.
- cert
Id String - ID of the server certificate.Note: This field may return null, indicating that no valid values can be obtained.
- alias String
- Alias of the certificate.Note: This field may return null, indicating that no valid values can be obtained.
- common
Name String - Domain name of the certificate. Note: This field may return
null, indicating that no valid value can be obtained. - deploy
Time String - Time when the certificate is deployed. Note: This field may return null, indicating that no valid values can be obtained.
- expire
Time String - Time when the certificate expires. Note: This field may return null, indicating that no valid values can be obtained.
- sign
Algo String - Signature algorithm. Note: This field may return null, indicating that no valid values can be obtained.
- type String
- Type of the certificate. Values:
default: Default certificate;upload: Specified certificate;managed: Tencent Cloud-managed certificate. Note: This field may returnnull, indicating that no valid value can be obtained.
TeoCertificateConfigTimeouts, TeoCertificateConfigTimeoutsArgs
TeoCertificateConfigUpstreamCertInfo, TeoCertificateConfigUpstreamCertInfoArgs
- Upstream
Certificate TeoVerify Certificate Config Upstream Cert Info Upstream Certificate Verify - In the origin certificate verification scenario, this field is the CA certificate used by EO nodes during origin-pull for verifying the origin server's certificate. Deployed on EO nodes for EO to authenticate the server certificate. When used as an input parameter, leaving it blank means retaining the original configuration.
- Upstream
Mutual TeoTls Certificate Config Upstream Cert Info Upstream Mutual Tls - In the origin-pull mutual authentication scenario, this field represents the certificate (including the public and private keys) carried during EO node origin-pull, which is deployed in the EO node for the origin server to authenticate the EO node. When used as an input parameter, it is left blank to indicate retaining the original configuration.
- Upstream
Certificate TeoVerify Certificate Config Upstream Cert Info Upstream Certificate Verify - In the origin certificate verification scenario, this field is the CA certificate used by EO nodes during origin-pull for verifying the origin server's certificate. Deployed on EO nodes for EO to authenticate the server certificate. When used as an input parameter, leaving it blank means retaining the original configuration.
- Upstream
Mutual TeoTls Certificate Config Upstream Cert Info Upstream Mutual Tls - In the origin-pull mutual authentication scenario, this field represents the certificate (including the public and private keys) carried during EO node origin-pull, which is deployed in the EO node for the origin server to authenticate the EO node. When used as an input parameter, it is left blank to indicate retaining the original configuration.
- upstream
Certificate TeoVerify Certificate Config Upstream Cert Info Upstream Certificate Verify - In the origin certificate verification scenario, this field is the CA certificate used by EO nodes during origin-pull for verifying the origin server's certificate. Deployed on EO nodes for EO to authenticate the server certificate. When used as an input parameter, leaving it blank means retaining the original configuration.
- upstream
Mutual TeoTls Certificate Config Upstream Cert Info Upstream Mutual Tls - In the origin-pull mutual authentication scenario, this field represents the certificate (including the public and private keys) carried during EO node origin-pull, which is deployed in the EO node for the origin server to authenticate the EO node. When used as an input parameter, it is left blank to indicate retaining the original configuration.
- upstream
Certificate TeoVerify Certificate Config Upstream Cert Info Upstream Certificate Verify - In the origin certificate verification scenario, this field is the CA certificate used by EO nodes during origin-pull for verifying the origin server's certificate. Deployed on EO nodes for EO to authenticate the server certificate. When used as an input parameter, leaving it blank means retaining the original configuration.
- upstream
Mutual TeoTls Certificate Config Upstream Cert Info Upstream Mutual Tls - In the origin-pull mutual authentication scenario, this field represents the certificate (including the public and private keys) carried during EO node origin-pull, which is deployed in the EO node for the origin server to authenticate the EO node. When used as an input parameter, it is left blank to indicate retaining the original configuration.
- upstream_
certificate_ Teoverify Certificate Config Upstream Cert Info Upstream Certificate Verify - In the origin certificate verification scenario, this field is the CA certificate used by EO nodes during origin-pull for verifying the origin server's certificate. Deployed on EO nodes for EO to authenticate the server certificate. When used as an input parameter, leaving it blank means retaining the original configuration.
- upstream_
mutual_ Teotls Certificate Config Upstream Cert Info Upstream Mutual Tls - In the origin-pull mutual authentication scenario, this field represents the certificate (including the public and private keys) carried during EO node origin-pull, which is deployed in the EO node for the origin server to authenticate the EO node. When used as an input parameter, it is left blank to indicate retaining the original configuration.
- upstream
Certificate Property MapVerify - In the origin certificate verification scenario, this field is the CA certificate used by EO nodes during origin-pull for verifying the origin server's certificate. Deployed on EO nodes for EO to authenticate the server certificate. When used as an input parameter, leaving it blank means retaining the original configuration.
- upstream
Mutual Property MapTls - In the origin-pull mutual authentication scenario, this field represents the certificate (including the public and private keys) carried during EO node origin-pull, which is deployed in the EO node for the origin server to authenticate the EO node. When used as an input parameter, it is left blank to indicate retaining the original configuration.
TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerify, TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyArgs
- Custom
Ca List<TeoCerts Certificate Config Upstream Cert Info Upstream Certificate Verify Custom Ca Cert> - List of specified trusted CA certificates. The origin certificate must be signed by this CA to pass verification. Note: Only required when VerificationMode is custom_ca. When used as input in ModifyHostsCertificate, you only need to provide the CertId.
- Verification
Mode string - Origin certificate verification mode. Values:
disable: Disable origin certificate verification;custom_ca: Use specified trusted CA certificate for verification.
- Custom
Ca []TeoCerts Certificate Config Upstream Cert Info Upstream Certificate Verify Custom Ca Cert - List of specified trusted CA certificates. The origin certificate must be signed by this CA to pass verification. Note: Only required when VerificationMode is custom_ca. When used as input in ModifyHostsCertificate, you only need to provide the CertId.
- Verification
Mode string - Origin certificate verification mode. Values:
disable: Disable origin certificate verification;custom_ca: Use specified trusted CA certificate for verification.
- custom
Ca List<TeoCerts Certificate Config Upstream Cert Info Upstream Certificate Verify Custom Ca Cert> - List of specified trusted CA certificates. The origin certificate must be signed by this CA to pass verification. Note: Only required when VerificationMode is custom_ca. When used as input in ModifyHostsCertificate, you only need to provide the CertId.
- verification
Mode String - Origin certificate verification mode. Values:
disable: Disable origin certificate verification;custom_ca: Use specified trusted CA certificate for verification.
- custom
Ca TeoCerts Certificate Config Upstream Cert Info Upstream Certificate Verify Custom Ca Cert[] - List of specified trusted CA certificates. The origin certificate must be signed by this CA to pass verification. Note: Only required when VerificationMode is custom_ca. When used as input in ModifyHostsCertificate, you only need to provide the CertId.
- verification
Mode string - Origin certificate verification mode. Values:
disable: Disable origin certificate verification;custom_ca: Use specified trusted CA certificate for verification.
- custom_
ca_ Sequence[Teocerts Certificate Config Upstream Cert Info Upstream Certificate Verify Custom Ca Cert] - List of specified trusted CA certificates. The origin certificate must be signed by this CA to pass verification. Note: Only required when VerificationMode is custom_ca. When used as input in ModifyHostsCertificate, you only need to provide the CertId.
- verification_
mode str - Origin certificate verification mode. Values:
disable: Disable origin certificate verification;custom_ca: Use specified trusted CA certificate for verification.
- custom
Ca List<Property Map>Certs - List of specified trusted CA certificates. The origin certificate must be signed by this CA to pass verification. Note: Only required when VerificationMode is custom_ca. When used as input in ModifyHostsCertificate, you only need to provide the CertId.
- verification
Mode String - Origin certificate verification mode. Values:
disable: Disable origin certificate verification;custom_ca: Use specified trusted CA certificate for verification.
TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyCustomCaCert, TeoCertificateConfigUpstreamCertInfoUpstreamCertificateVerifyCustomCaCertArgs
- Alias string
- Alias of the certificate.
- Cert
Id string - Certificate ID, which originates from the SSL side.
- Deploy
Time string - Time when the certificate is deployed.
- Expire
Time string - The certificate expiration time.
- Sign
Algo string - Signature algorithm.
- Status string
- Certificate status.
- Type string
- Type of the certificate.
- Alias string
- Alias of the certificate.
- Cert
Id string - Certificate ID, which originates from the SSL side.
- Deploy
Time string - Time when the certificate is deployed.
- Expire
Time string - The certificate expiration time.
- Sign
Algo string - Signature algorithm.
- Status string
- Certificate status.
- Type string
- Type of the certificate.
- alias String
- Alias of the certificate.
- cert
Id String - Certificate ID, which originates from the SSL side.
- deploy
Time String - Time when the certificate is deployed.
- expire
Time String - The certificate expiration time.
- sign
Algo String - Signature algorithm.
- status String
- Certificate status.
- type String
- Type of the certificate.
- alias string
- Alias of the certificate.
- cert
Id string - Certificate ID, which originates from the SSL side.
- deploy
Time string - Time when the certificate is deployed.
- expire
Time string - The certificate expiration time.
- sign
Algo string - Signature algorithm.
- status string
- Certificate status.
- type string
- Type of the certificate.
- alias str
- Alias of the certificate.
- cert_
id str - Certificate ID, which originates from the SSL side.
- deploy_
time str - Time when the certificate is deployed.
- expire_
time str - The certificate expiration time.
- sign_
algo str - Signature algorithm.
- status str
- Certificate status.
- type str
- Type of the certificate.
- alias String
- Alias of the certificate.
- cert
Id String - Certificate ID, which originates from the SSL side.
- deploy
Time String - Time when the certificate is deployed.
- expire
Time String - The certificate expiration time.
- sign
Algo String - Signature algorithm.
- status String
- Certificate status.
- type String
- Type of the certificate.
TeoCertificateConfigUpstreamCertInfoUpstreamMutualTls, TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsArgs
- Switch string
- Mutual authentication configuration switch, the values are:
on: enable;off: disable. - Cert
Infos List<TeoCertificate Config Upstream Cert Info Upstream Mutual Tls Cert Info> - Mutual authentication certificate list. Note: When using MutualTLS as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- Switch string
- Mutual authentication configuration switch, the values are:
on: enable;off: disable. - Cert
Infos []TeoCertificate Config Upstream Cert Info Upstream Mutual Tls Cert Info - Mutual authentication certificate list. Note: When using MutualTLS as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch_ String
- Mutual authentication configuration switch, the values are:
on: enable;off: disable. - cert
Infos List<TeoCertificate Config Upstream Cert Info Upstream Mutual Tls Cert Info> - Mutual authentication certificate list. Note: When using MutualTLS as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch string
- Mutual authentication configuration switch, the values are:
on: enable;off: disable. - cert
Infos TeoCertificate Config Upstream Cert Info Upstream Mutual Tls Cert Info[] - Mutual authentication certificate list. Note: When using MutualTLS as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch str
- Mutual authentication configuration switch, the values are:
on: enable;off: disable. - cert_
infos Sequence[TeoCertificate Config Upstream Cert Info Upstream Mutual Tls Cert Info] - Mutual authentication certificate list. Note: When using MutualTLS as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
- switch String
- Mutual authentication configuration switch, the values are:
on: enable;off: disable. - cert
Infos List<Property Map> - Mutual authentication certificate list. Note: When using MutualTLS as an input parameter in ModifyHostsCertificate, you only need to provide the CertId of the corresponding certificate. You can check the CertId from the SSL Certificate List.
TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsCertInfo, TeoCertificateConfigUpstreamCertInfoUpstreamMutualTlsCertInfoArgs
- Alias string
- Alias of the certificate.
- Cert
Id string - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- Deploy
Time string - Time when the certificate is deployed.
- Expire
Time string - The certificate expiration time.
- Sign
Algo string - Signature algorithm.
- Status string
- Certificate status.
- Type string
- Type of the certificate. Values:
default: Default certificateupload: Specified certificatemanaged: Tencent Cloud-managed certificate.
- Alias string
- Alias of the certificate.
- Cert
Id string - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- Deploy
Time string - Time when the certificate is deployed.
- Expire
Time string - The certificate expiration time.
- Sign
Algo string - Signature algorithm.
- Status string
- Certificate status.
- Type string
- Type of the certificate. Values:
default: Default certificateupload: Specified certificatemanaged: Tencent Cloud-managed certificate.
- alias String
- Alias of the certificate.
- cert
Id String - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy
Time String - Time when the certificate is deployed.
- expire
Time String - The certificate expiration time.
- sign
Algo String - Signature algorithm.
- status String
- Certificate status.
- type String
- Type of the certificate. Values:
default: Default certificateupload: Specified certificatemanaged: Tencent Cloud-managed certificate.
- alias string
- Alias of the certificate.
- cert
Id string - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy
Time string - Time when the certificate is deployed.
- expire
Time string - The certificate expiration time.
- sign
Algo string - Signature algorithm.
- status string
- Certificate status.
- type string
- Type of the certificate. Values:
default: Default certificateupload: Specified certificatemanaged: Tencent Cloud-managed certificate.
- alias str
- Alias of the certificate.
- cert_
id str - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy_
time str - Time when the certificate is deployed.
- expire_
time str - The certificate expiration time.
- sign_
algo str - Signature algorithm.
- status str
- Certificate status.
- type str
- Type of the certificate. Values:
default: Default certificateupload: Specified certificatemanaged: Tencent Cloud-managed certificate.
- alias String
- Alias of the certificate.
- cert
Id String - Certificate ID, which originates from the SSL side. You can check the CertId from the SSL Certificate List.
- deploy
Time String - Time when the certificate is deployed.
- expire
Time String - The certificate expiration time.
- sign
Algo String - Signature algorithm.
- status String
- Certificate status.
- type String
- Type of the certificate. Values:
default: Default certificateupload: Specified certificatemanaged: Tencent Cloud-managed certificate.
Import
TEO certificate config can be imported using the id, e.g.
$ pulumi import tencentcloud:index/teoCertificateConfig:TeoCertificateConfig certificate zone_id#host
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
published on Friday, May 1, 2026 by tencentcloudstack
