published on Thursday, Sep 3, 2026 by Volcengine
published on Thursday, Sep 3, 2026 by Volcengine
Organization Info template in Certificate Center. Used to reuse enterprise or individual identity information when applying for SSL certificates, including organization name, address, contact person, and other details.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const example = new volcenginecc.certificateservice.OrganizationInfo("example", {
type: "Individual",
tag: "tf-org-individual-tags",
contact: {
first_name: "Example",
last_name: "User",
email: "user@example.com",
phone: "00000000000",
id_card_no: "ID_CARD_NUMBER",
},
projectName: "default",
tags: [
{
key: "case",
value: "individual-tags",
},
{
key: "env",
value: "test",
},
],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
example = volcenginecc.certificateservice.OrganizationInfo("example",
type="Individual",
tag="tf-org-individual-tags",
contact={
"first_name": "Example",
"last_name": "User",
"email": "user@example.com",
"phone": "00000000000",
"id_card_no": "ID_CARD_NUMBER",
},
project_name="default",
tags=[
{
"key": "case",
"value": "individual-tags",
},
{
"key": "env",
"value": "test",
},
])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/certificateservice"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := certificateservice.NewOrganizationInfo(ctx, "example", &certificateservice.OrganizationInfoArgs{
Type: pulumi.String("Individual"),
Tag: pulumi.String("tf-org-individual-tags"),
Contact: &certificateservice.OrganizationInfoContactArgs{
First_name: "Example",
Last_name: "User",
Email: pulumi.String("user@example.com"),
Phone: pulumi.String("00000000000"),
Id_card_no: "ID_CARD_NUMBER",
},
ProjectName: pulumi.String("default"),
Tags: certificateservice.OrganizationInfoTagArray{
&certificateservice.OrganizationInfoTagArgs{
Key: pulumi.String("case"),
Value: pulumi.String("individual-tags"),
},
&certificateservice.OrganizationInfoTagArgs{
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 example = new Volcenginecc.Certificateservice.OrganizationInfo("example", new()
{
Type = "Individual",
Tag = "tf-org-individual-tags",
Contact = new Volcenginecc.Certificateservice.Inputs.OrganizationInfoContactArgs
{
First_name = "Example",
Last_name = "User",
Email = "user@example.com",
Phone = "00000000000",
Id_card_no = "ID_CARD_NUMBER",
},
ProjectName = "default",
Tags = new[]
{
new Volcenginecc.Certificateservice.Inputs.OrganizationInfoTagArgs
{
Key = "case",
Value = "individual-tags",
},
new Volcenginecc.Certificateservice.Inputs.OrganizationInfoTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.certificateservice.OrganizationInfo;
import com.volcengine.volcenginecc.certificateservice.OrganizationInfoArgs;
import com.pulumi.volcenginecc.certificateservice.inputs.OrganizationInfoContactArgs;
import com.pulumi.volcenginecc.certificateservice.inputs.OrganizationInfoTagArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new OrganizationInfo("example", OrganizationInfoArgs.builder()
.type("Individual")
.tag("tf-org-individual-tags")
.contact(OrganizationInfoContactArgs.builder()
.first_name("Example")
.last_name("User")
.email("user@example.com")
.phone("00000000000")
.id_card_no("ID_CARD_NUMBER")
.build())
.projectName("default")
.tags(
OrganizationInfoTagArgs.builder()
.key("case")
.value("individual-tags")
.build(),
OrganizationInfoTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
example:
type: volcenginecc:certificateservice:OrganizationInfo
properties:
type: Individual
tag: tf-org-individual-tags
contact:
first_name: Example
last_name: User
email: user@example.com
phone: '00000000000'
id_card_no: ID_CARD_NUMBER
projectName: default
tags:
- key: case
value: individual-tags
- key: env
value: test
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_certificateservice_organizationinfo" "example" {
type = "Individual"
tag = "tf-org-individual-tags"
contact = {
first_name = "Example"
last_name = "User"
email = "user@example.com"
phone = "00000000000"
id_card_no = "ID_CARD_NUMBER"
}
project_name = "default"
tags {
key = "case"
value = "individual-tags"
}
tags {
key = "env"
value = "test"
}
}
Create OrganizationInfo Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrganizationInfo(name: string, args: OrganizationInfoArgs, opts?: CustomResourceOptions);@overload
def OrganizationInfo(resource_name: str,
args: OrganizationInfoArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrganizationInfo(resource_name: str,
opts: Optional[ResourceOptions] = None,
contact: Optional[OrganizationInfoContactArgs] = None,
type: Optional[str] = None,
tag: Optional[str] = None,
email: Optional[str] = None,
country: Optional[str] = None,
department: Optional[str] = None,
address: Optional[str] = None,
name: Optional[str] = None,
postal_code: Optional[str] = None,
project_name: Optional[str] = None,
province: Optional[str] = None,
city: Optional[str] = None,
tags: Optional[Sequence[OrganizationInfoTagArgs]] = None,
business_license_no: Optional[str] = None)func NewOrganizationInfo(ctx *Context, name string, args OrganizationInfoArgs, opts ...ResourceOption) (*OrganizationInfo, error)public OrganizationInfo(string name, OrganizationInfoArgs args, CustomResourceOptions? opts = null)
public OrganizationInfo(String name, OrganizationInfoArgs args)
public OrganizationInfo(String name, OrganizationInfoArgs args, CustomResourceOptions options)
type: volcenginecc:certificateservice:OrganizationInfo
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_certificateservice_organization_info" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OrganizationInfoArgs
- 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 OrganizationInfoArgs
- 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 OrganizationInfoArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationInfoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationInfoArgs
- 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 organizationInfoResource = new Volcenginecc.Certificateservice.OrganizationInfo("organizationInfoResource", new()
{
Contact = new Volcenginecc.Certificateservice.Inputs.OrganizationInfoContactArgs
{
Email = "string",
FirstName = "string",
IdCardNo = "string",
LastName = "string",
Phone = "string",
},
Type = "string",
Tag = "string",
Email = "string",
Country = "string",
Department = "string",
Address = "string",
Name = "string",
PostalCode = "string",
ProjectName = "string",
Province = "string",
City = "string",
Tags = new[]
{
new Volcenginecc.Certificateservice.Inputs.OrganizationInfoTagArgs
{
Key = "string",
Value = "string",
},
},
BusinessLicenseNo = "string",
});
example, err := certificateservice.NewOrganizationInfo(ctx, "organizationInfoResource", &certificateservice.OrganizationInfoArgs{
Contact: &certificateservice.OrganizationInfoContactArgs{
Email: pulumi.String("string"),
FirstName: pulumi.String("string"),
IdCardNo: pulumi.String("string"),
LastName: pulumi.String("string"),
Phone: pulumi.String("string"),
},
Type: pulumi.String("string"),
Tag: pulumi.String("string"),
Email: pulumi.String("string"),
Country: pulumi.String("string"),
Department: pulumi.String("string"),
Address: pulumi.String("string"),
Name: pulumi.String("string"),
PostalCode: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Province: pulumi.String("string"),
City: pulumi.String("string"),
Tags: certificateservice.OrganizationInfoTagArray{
&certificateservice.OrganizationInfoTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
BusinessLicenseNo: pulumi.String("string"),
})
resource "volcenginecc_certificateservice_organization_info" "organizationInfoResource" {
lifecycle {
create_before_destroy = true
}
contact = {
email = "string"
first_name = "string"
id_card_no = "string"
last_name = "string"
phone = "string"
}
type = "string"
tag = "string"
email = "string"
country = "string"
department = "string"
address = "string"
name = "string"
postal_code = "string"
project_name = "string"
province = "string"
city = "string"
tags {
key = "string"
value = "string"
}
business_license_no = "string"
}
var organizationInfoResource = new OrganizationInfo("organizationInfoResource", OrganizationInfoArgs.builder()
.contact(OrganizationInfoContactArgs.builder()
.email("string")
.firstName("string")
.idCardNo("string")
.lastName("string")
.phone("string")
.build())
.type("string")
.tag("string")
.email("string")
.country("string")
.department("string")
.address("string")
.name("string")
.postalCode("string")
.projectName("string")
.province("string")
.city("string")
.tags(OrganizationInfoTagArgs.builder()
.key("string")
.value("string")
.build())
.businessLicenseNo("string")
.build());
organization_info_resource = volcenginecc.certificateservice.OrganizationInfo("organizationInfoResource",
contact={
"email": "string",
"first_name": "string",
"id_card_no": "string",
"last_name": "string",
"phone": "string",
},
type="string",
tag="string",
email="string",
country="string",
department="string",
address="string",
name="string",
postal_code="string",
project_name="string",
province="string",
city="string",
tags=[{
"key": "string",
"value": "string",
}],
business_license_no="string")
const organizationInfoResource = new volcenginecc.certificateservice.OrganizationInfo("organizationInfoResource", {
contact: {
email: "string",
firstName: "string",
idCardNo: "string",
lastName: "string",
phone: "string",
},
type: "string",
tag: "string",
email: "string",
country: "string",
department: "string",
address: "string",
name: "string",
postalCode: "string",
projectName: "string",
province: "string",
city: "string",
tags: [{
key: "string",
value: "string",
}],
businessLicenseNo: "string",
});
type: volcenginecc:certificateservice:OrganizationInfo
properties:
address: string
businessLicenseNo: string
city: string
contact:
email: string
firstName: string
idCardNo: string
lastName: string
phone: string
country: string
department: string
email: string
name: string
postalCode: string
projectName: string
province: string
tag: string
tags:
- key: string
value: string
type: string
OrganizationInfo 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 OrganizationInfo resource accepts the following input properties:
- Contact
Volcengine.
Organization Info Contact - Contact information for the information template.
- Tag string
- Name of the information template.
- Type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- Address string
- Enterprise address. Required when Type is Enterprise.
- Business
License stringNo - Enterprise unified social credit code.
- City string
- City where the enterprise is located. Required when Type is Enterprise.
- Country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- Department string
- Enterprise department.
- Email string
- Enterprise email address.
- Name string
- Enterprise name. Required when Type is Enterprise.
- Postal
Code string - Postal code, only for mainland China.
- Project
Name string - Project name associated with the information template. Default is default.
- Province string
- Province where the enterprise is located. Required when Type is Enterprise.
-
List<Volcengine.
Organization Info Tag> - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Contact
Organization
Info Contact Args - Contact information for the information template.
- Tag string
- Name of the information template.
- Type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- Address string
- Enterprise address. Required when Type is Enterprise.
- Business
License stringNo - Enterprise unified social credit code.
- City string
- City where the enterprise is located. Required when Type is Enterprise.
- Country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- Department string
- Enterprise department.
- Email string
- Enterprise email address.
- Name string
- Enterprise name. Required when Type is Enterprise.
- Postal
Code string - Postal code, only for mainland China.
- Project
Name string - Project name associated with the information template. Default is default.
- Province string
- Province where the enterprise is located. Required when Type is Enterprise.
-
[]Organization
Info Tag Args - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- contact object
- Contact information for the information template.
- tag string
- Name of the information template.
- type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- address string
- Enterprise address. Required when Type is Enterprise.
- business_
license_ stringno - Enterprise unified social credit code.
- city string
- City where the enterprise is located. Required when Type is Enterprise.
- country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- department string
- Enterprise department.
- email string
- Enterprise email address.
- name string
- Enterprise name. Required when Type is Enterprise.
- postal_
code string - Postal code, only for mainland China.
- project_
name string - Project name associated with the information template. Default is default.
- province string
- Province where the enterprise is located. Required when Type is Enterprise.
- list(object)
- List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- contact
Organization
Info Contact - Contact information for the information template.
- tag String
- Name of the information template.
- type String
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- address String
- Enterprise address. Required when Type is Enterprise.
- business
License StringNo - Enterprise unified social credit code.
- city String
- City where the enterprise is located. Required when Type is Enterprise.
- country String
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- department String
- Enterprise department.
- email String
- Enterprise email address.
- name String
- Enterprise name. Required when Type is Enterprise.
- postal
Code String - Postal code, only for mainland China.
- project
Name String - Project name associated with the information template. Default is default.
- province String
- Province where the enterprise is located. Required when Type is Enterprise.
-
List<Organization
Info Tag> - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- contact
Organization
Info Contact - Contact information for the information template.
- tag string
- Name of the information template.
- type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- address string
- Enterprise address. Required when Type is Enterprise.
- business
License stringNo - Enterprise unified social credit code.
- city string
- City where the enterprise is located. Required when Type is Enterprise.
- country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- department string
- Enterprise department.
- email string
- Enterprise email address.
- name string
- Enterprise name. Required when Type is Enterprise.
- postal
Code string - Postal code, only for mainland China.
- project
Name string - Project name associated with the information template. Default is default.
- province string
- Province where the enterprise is located. Required when Type is Enterprise.
-
Organization
Info Tag[] - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- contact
Organization
Info Contact Args - Contact information for the information template.
- tag str
- Name of the information template.
- type str
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- address str
- Enterprise address. Required when Type is Enterprise.
- business_
license_ strno - Enterprise unified social credit code.
- city str
- City where the enterprise is located. Required when Type is Enterprise.
- country str
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- department str
- Enterprise department.
- email str
- Enterprise email address.
- name str
- Enterprise name. Required when Type is Enterprise.
- postal_
code str - Postal code, only for mainland China.
- project_
name str - Project name associated with the information template. Default is default.
- province str
- Province where the enterprise is located. Required when Type is Enterprise.
-
Sequence[Organization
Info Tag Args] - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- contact Property Map
- Contact information for the information template.
- tag String
- Name of the information template.
- type String
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- address String
- Enterprise address. Required when Type is Enterprise.
- business
License StringNo - Enterprise unified social credit code.
- city String
- City where the enterprise is located. Required when Type is Enterprise.
- country String
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- department String
- Enterprise department.
- email String
- Enterprise email address.
- name String
- Enterprise name. Required when Type is Enterprise.
- postal
Code String - Postal code, only for mainland China.
- project
Name String - Project name associated with the information template. Default is default.
- province String
- Province where the enterprise is located. Required when Type is Enterprise.
- List<Property Map>
- List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrganizationInfo resource produces the following output properties:
- Account string
- Account ID associated with the information template.
- Created
Time string - Creation time of the information template.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- Account string
- Account ID associated with the information template.
- Created
Time string - Creation time of the information template.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- account string
- Account ID associated with the information template.
- created_
time string - Creation time of the information template.
- id string
- The provider-assigned unique ID for this managed resource.
- organization_
id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- account String
- Account ID associated with the information template.
- created
Time String - Creation time of the information template.
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- account string
- Account ID associated with the information template.
- created
Time string - Creation time of the information template.
- id string
- The provider-assigned unique ID for this managed resource.
- organization
Id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- account str
- Account ID associated with the information template.
- created_
time str - Creation time of the information template.
- id str
- The provider-assigned unique ID for this managed resource.
- organization_
id str - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- account String
- Account ID associated with the information template.
- created
Time String - Creation time of the information template.
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
Look up Existing OrganizationInfo Resource
Get an existing OrganizationInfo 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?: OrganizationInfoState, opts?: CustomResourceOptions): OrganizationInfo@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account: Optional[str] = None,
address: Optional[str] = None,
business_license_no: Optional[str] = None,
city: Optional[str] = None,
contact: Optional[OrganizationInfoContactArgs] = None,
country: Optional[str] = None,
created_time: Optional[str] = None,
department: Optional[str] = None,
email: Optional[str] = None,
name: Optional[str] = None,
organization_id: Optional[str] = None,
postal_code: Optional[str] = None,
project_name: Optional[str] = None,
province: Optional[str] = None,
tag: Optional[str] = None,
tags: Optional[Sequence[OrganizationInfoTagArgs]] = None,
type: Optional[str] = None) -> OrganizationInfofunc GetOrganizationInfo(ctx *Context, name string, id IDInput, state *OrganizationInfoState, opts ...ResourceOption) (*OrganizationInfo, error)public static OrganizationInfo Get(string name, Input<string> id, OrganizationInfoState? state, CustomResourceOptions? opts = null)public static OrganizationInfo get(String name, Output<String> id, OrganizationInfoState state, CustomResourceOptions options)resources: _: type: volcenginecc:certificateservice:OrganizationInfo get: id: ${id}import {
to = volcenginecc_certificateservice_organization_info.example
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.
- Account string
- Account ID associated with the information template.
- Address string
- Enterprise address. Required when Type is Enterprise.
- Business
License stringNo - Enterprise unified social credit code.
- City string
- City where the enterprise is located. Required when Type is Enterprise.
- Contact
Volcengine.
Organization Info Contact - Contact information for the information template.
- Country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- Created
Time string - Creation time of the information template.
- Department string
- Enterprise department.
- Email string
- Enterprise email address.
- Name string
- Enterprise name. Required when Type is Enterprise.
- Organization
Id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- Postal
Code string - Postal code, only for mainland China.
- Project
Name string - Project name associated with the information template. Default is default.
- Province string
- Province where the enterprise is located. Required when Type is Enterprise.
- Tag string
- Name of the information template.
-
List<Volcengine.
Organization Info Tag> - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- Account string
- Account ID associated with the information template.
- Address string
- Enterprise address. Required when Type is Enterprise.
- Business
License stringNo - Enterprise unified social credit code.
- City string
- City where the enterprise is located. Required when Type is Enterprise.
- Contact
Organization
Info Contact Args - Contact information for the information template.
- Country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- Created
Time string - Creation time of the information template.
- Department string
- Enterprise department.
- Email string
- Enterprise email address.
- Name string
- Enterprise name. Required when Type is Enterprise.
- Organization
Id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- Postal
Code string - Postal code, only for mainland China.
- Project
Name string - Project name associated with the information template. Default is default.
- Province string
- Province where the enterprise is located. Required when Type is Enterprise.
- Tag string
- Name of the information template.
-
[]Organization
Info Tag Args - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- account string
- Account ID associated with the information template.
- address string
- Enterprise address. Required when Type is Enterprise.
- business_
license_ stringno - Enterprise unified social credit code.
- city string
- City where the enterprise is located. Required when Type is Enterprise.
- contact object
- Contact information for the information template.
- country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- created_
time string - Creation time of the information template.
- department string
- Enterprise department.
- email string
- Enterprise email address.
- name string
- Enterprise name. Required when Type is Enterprise.
- organization_
id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- postal_
code string - Postal code, only for mainland China.
- project_
name string - Project name associated with the information template. Default is default.
- province string
- Province where the enterprise is located. Required when Type is Enterprise.
- tag string
- Name of the information template.
- list(object)
- List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- account String
- Account ID associated with the information template.
- address String
- Enterprise address. Required when Type is Enterprise.
- business
License StringNo - Enterprise unified social credit code.
- city String
- City where the enterprise is located. Required when Type is Enterprise.
- contact
Organization
Info Contact - Contact information for the information template.
- country String
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- created
Time String - Creation time of the information template.
- department String
- Enterprise department.
- email String
- Enterprise email address.
- name String
- Enterprise name. Required when Type is Enterprise.
- organization
Id String - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- postal
Code String - Postal code, only for mainland China.
- project
Name String - Project name associated with the information template. Default is default.
- province String
- Province where the enterprise is located. Required when Type is Enterprise.
- tag String
- Name of the information template.
-
List<Organization
Info Tag> - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type String
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- account string
- Account ID associated with the information template.
- address string
- Enterprise address. Required when Type is Enterprise.
- business
License stringNo - Enterprise unified social credit code.
- city string
- City where the enterprise is located. Required when Type is Enterprise.
- contact
Organization
Info Contact - Contact information for the information template.
- country string
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- created
Time string - Creation time of the information template.
- department string
- Enterprise department.
- email string
- Enterprise email address.
- name string
- Enterprise name. Required when Type is Enterprise.
- organization
Id string - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- postal
Code string - Postal code, only for mainland China.
- project
Name string - Project name associated with the information template. Default is default.
- province string
- Province where the enterprise is located. Required when Type is Enterprise.
- tag string
- Name of the information template.
-
Organization
Info Tag[] - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type string
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- account str
- Account ID associated with the information template.
- address str
- Enterprise address. Required when Type is Enterprise.
- business_
license_ strno - Enterprise unified social credit code.
- city str
- City where the enterprise is located. Required when Type is Enterprise.
- contact
Organization
Info Contact Args - Contact information for the information template.
- country str
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- created_
time str - Creation time of the information template.
- department str
- Enterprise department.
- email str
- Enterprise email address.
- name str
- Enterprise name. Required when Type is Enterprise.
- organization_
id str - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- postal_
code str - Postal code, only for mainland China.
- project_
name str - Project name associated with the information template. Default is default.
- province str
- Province where the enterprise is located. Required when Type is Enterprise.
- tag str
- Name of the information template.
-
Sequence[Organization
Info Tag Args] - List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type str
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
- account String
- Account ID associated with the information template.
- address String
- Enterprise address. Required when Type is Enterprise.
- business
License StringNo - Enterprise unified social credit code.
- city String
- City where the enterprise is located. Required when Type is Enterprise.
- contact Property Map
- Contact information for the information template.
- country String
- Two-letter country code where the enterprise is located, e.g., CN. Required when Type is Enterprise.
- created
Time String - Creation time of the information template.
- department String
- Enterprise department.
- email String
- Enterprise email address.
- name String
- Enterprise name. Required when Type is Enterprise.
- organization
Id String - Information template ID, prefixed with org-, for example org-879f6502723b4e0f8762cf3528f4****.
- postal
Code String - Postal code, only for mainland China.
- project
Name String - Project name associated with the information template. Default is default.
- province String
- Province where the enterprise is located. Required when Type is Enterprise.
- tag String
- Name of the information template.
- List<Property Map>
- List of resource tags bound to the information template. Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type String
- Information template type. Individual: Personal, can only apply for DV certificates. Enterprise: Enterprise, can apply for DV/OV/EV certificates.
Supporting Types
OrganizationInfoContact, OrganizationInfoContactArgs
- email string
- Contact person's email address.
- first_
name string - Contact person's given name.
- id_
card_ stringno - Contact person's ID number.
- last_
name string - Contact person's surname.
- phone string
- Contact person's phone number.
- email str
- Contact person's email address.
- first_
name str - Contact person's given name.
- id_
card_ strno - Contact person's ID number.
- last_
name str - Contact person's surname.
- phone str
- Contact person's phone number.
OrganizationInfoTag, OrganizationInfoTagArgs
Import
$ pulumi import volcenginecc:certificateservice/organizationInfo:OrganizationInfo example "organization_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Sep 3, 2026 by Volcengine