published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
ALB provides personalized configuration functionality at the listener level. You can create and manage standard NGINX configuration policies in the console, associate configuration policies with listeners in one click on the listener details page, and complete personalized configurations to meet business requirements without submitting a ticket.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const aLBCustomizedCfgDemo = new volcenginecc.alb.CustomizedCfg("ALBCustomizedCfgDemo", {
customizedCfgName: "ccapi-test",
description: "testdesc",
customizedCfgContent: `ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;\x0d
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;\x0d
client_max_body_size 60M;\x0d
keepalive_timeout 77s;\x0d
proxy_connect_timeout 4s;\x0d
proxy_request_buffering off;\x0d
proxy_ignore_client_abort off;\x0d
proxy_read_timeout 60s;\x0d
proxy_send_timeout 60s;\x0d
client_header_timeout 60s;\x0d
client_body_timeout 60s;\x0d
send_timeout 60s;\x0d
ssl_verify_depth 3;\x0d
`,
projectName: "default",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
a_lb_customized_cfg_demo = volcenginecc.alb.CustomizedCfg("ALBCustomizedCfgDemo",
customized_cfg_name="ccapi-test",
description="testdesc",
customized_cfg_content="""ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;\x0d
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;\x0d
client_max_body_size 60M;\x0d
keepalive_timeout 77s;\x0d
proxy_connect_timeout 4s;\x0d
proxy_request_buffering off;\x0d
proxy_ignore_client_abort off;\x0d
proxy_read_timeout 60s;\x0d
proxy_send_timeout 60s;\x0d
client_header_timeout 60s;\x0d
client_body_timeout 60s;\x0d
send_timeout 60s;\x0d
ssl_verify_depth 3;\x0d
""",
project_name="default",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/alb"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := alb.NewCustomizedCfg(ctx, "ALBCustomizedCfgDemo", &alb.CustomizedCfgArgs{
CustomizedCfgName: pulumi.String("ccapi-test"),
Description: pulumi.String("testdesc"),
CustomizedCfgContent: pulumi.String(`ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
client_max_body_size 60M;
keepalive_timeout 77s;
proxy_connect_timeout 4s;
proxy_request_buffering off;
proxy_ignore_client_abort off;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 60s;
ssl_verify_depth 3;
`),
ProjectName: pulumi.String("default"),
Tags: alb.CustomizedCfgTagArray{
&alb.CustomizedCfgTagArgs{
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 aLBCustomizedCfgDemo = new Volcenginecc.Alb.CustomizedCfg("ALBCustomizedCfgDemo", new()
{
CustomizedCfgName = "ccapi-test",
Description = "testdesc",
CustomizedCfgContent = @"ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
client_max_body_size 60M;
keepalive_timeout 77s;
proxy_connect_timeout 4s;
proxy_request_buffering off;
proxy_ignore_client_abort off;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 60s;
ssl_verify_depth 3;
",
ProjectName = "default",
Tags = new[]
{
new Volcenginecc.Alb.Inputs.CustomizedCfgTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.alb.CustomizedCfg;
import com.volcengine.volcenginecc.alb.CustomizedCfgArgs;
import com.pulumi.volcenginecc.alb.inputs.CustomizedCfgTagArgs;
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 aLBCustomizedCfgDemo = new CustomizedCfg("aLBCustomizedCfgDemo", CustomizedCfgArgs.builder()
.customizedCfgName("ccapi-test")
.description("testdesc")
.customizedCfgContent("""
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
client_max_body_size 60M;
keepalive_timeout 77s;
proxy_connect_timeout 4s;
proxy_request_buffering off;
proxy_ignore_client_abort off;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 60s;
ssl_verify_depth 3;
""")
.projectName("default")
.tags(CustomizedCfgTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
aLBCustomizedCfgDemo:
type: volcenginecc:alb:CustomizedCfg
name: ALBCustomizedCfgDemo
properties:
customizedCfgName: ccapi-test
description: testdesc
customizedCfgContent: "ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;\r\nssl_protocols TLSv1.2 TLSv1.1 TLSv1;\r\nclient_max_body_size 60M;\r\nkeepalive_timeout 77s;\r\nproxy_connect_timeout 4s;\r\nproxy_request_buffering off;\r\nproxy_ignore_client_abort off;\r\nproxy_read_timeout 60s;\r\nproxy_send_timeout 60s;\r\nclient_header_timeout 60s;\r\nclient_body_timeout 60s;\r\nsend_timeout 60s;\r\nssl_verify_depth 3;\r\n"
projectName: default
tags:
- key: env
value: test
Create CustomizedCfg Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomizedCfg(name: string, args: CustomizedCfgArgs, opts?: CustomResourceOptions);@overload
def CustomizedCfg(resource_name: str,
args: CustomizedCfgArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomizedCfg(resource_name: str,
opts: Optional[ResourceOptions] = None,
customized_cfg_content: Optional[str] = None,
customized_cfg_name: Optional[str] = None,
description: Optional[str] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[CustomizedCfgTagArgs]] = None)func NewCustomizedCfg(ctx *Context, name string, args CustomizedCfgArgs, opts ...ResourceOption) (*CustomizedCfg, error)public CustomizedCfg(string name, CustomizedCfgArgs args, CustomResourceOptions? opts = null)
public CustomizedCfg(String name, CustomizedCfgArgs args)
public CustomizedCfg(String name, CustomizedCfgArgs args, CustomResourceOptions options)
type: volcenginecc:alb:CustomizedCfg
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 CustomizedCfgArgs
- 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 CustomizedCfgArgs
- 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 CustomizedCfgArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomizedCfgArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomizedCfgArgs
- 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 customizedCfgResource = new Volcenginecc.Alb.CustomizedCfg("customizedCfgResource", new()
{
CustomizedCfgContent = "string",
CustomizedCfgName = "string",
Description = "string",
ProjectName = "string",
Tags = new[]
{
new Volcenginecc.Alb.Inputs.CustomizedCfgTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := alb.NewCustomizedCfg(ctx, "customizedCfgResource", &alb.CustomizedCfgArgs{
CustomizedCfgContent: pulumi.String("string"),
CustomizedCfgName: pulumi.String("string"),
Description: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Tags: alb.CustomizedCfgTagArray{
&alb.CustomizedCfgTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var customizedCfgResource = new CustomizedCfg("customizedCfgResource", CustomizedCfgArgs.builder()
.customizedCfgContent("string")
.customizedCfgName("string")
.description("string")
.projectName("string")
.tags(CustomizedCfgTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
customized_cfg_resource = volcenginecc.alb.CustomizedCfg("customizedCfgResource",
customized_cfg_content="string",
customized_cfg_name="string",
description="string",
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const customizedCfgResource = new volcenginecc.alb.CustomizedCfg("customizedCfgResource", {
customizedCfgContent: "string",
customizedCfgName: "string",
description: "string",
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcenginecc:alb:CustomizedCfg
properties:
customizedCfgContent: string
customizedCfgName: string
description: string
projectName: string
tags:
- key: string
value: string
CustomizedCfg 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 CustomizedCfg resource accepts the following input properties:
- Customized
Cfg stringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- Customized
Cfg stringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- Description string
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- Project
Name string - Project name to which the personalized configuration belongs.
-
List<Volcengine.
Customized Cfg Tag>
- Customized
Cfg stringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- Customized
Cfg stringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- Description string
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- Project
Name string - Project name to which the personalized configuration belongs.
-
[]Customized
Cfg Tag Args
- customized
Cfg StringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized
Cfg StringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description String
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- project
Name String - Project name to which the personalized configuration belongs.
-
List<Customized
Cfg Tag>
- customized
Cfg stringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized
Cfg stringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description string
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- project
Name string - Project name to which the personalized configuration belongs.
-
Customized
Cfg Tag[]
- customized_
cfg_ strcontent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized_
cfg_ strname - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description str
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- project_
name str - Project name to which the personalized configuration belongs.
-
Sequence[Customized
Cfg Tag Args]
- customized
Cfg StringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized
Cfg StringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description String
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- project
Name String - Project name to which the personalized configuration belongs.
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomizedCfg resource produces the following output properties:
- Created
Time string - Creation time of the personalized configuration.
- Customized
Cfg stringId - Personalized configuration ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
List<Volcengine.
Customized Cfg Listener> - Status string
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- Updated
Time string - Last operation time of the personalized configuration.
- Created
Time string - Creation time of the personalized configuration.
- Customized
Cfg stringId - Personalized configuration ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
[]Customized
Cfg Listener - Status string
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- Updated
Time string - Last operation time of the personalized configuration.
- created
Time String - Creation time of the personalized configuration.
- customized
Cfg StringId - Personalized configuration ID.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners
List<Customized
Cfg Listener> - status String
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- updated
Time String - Last operation time of the personalized configuration.
- created
Time string - Creation time of the personalized configuration.
- customized
Cfg stringId - Personalized configuration ID.
- id string
- The provider-assigned unique ID for this managed resource.
- listeners
Customized
Cfg Listener[] - status string
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- updated
Time string - Last operation time of the personalized configuration.
- created_
time str - Creation time of the personalized configuration.
- customized_
cfg_ strid - Personalized configuration ID.
- id str
- The provider-assigned unique ID for this managed resource.
- listeners
Sequence[Customized
Cfg Listener] - status str
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- updated_
time str - Last operation time of the personalized configuration.
- created
Time String - Creation time of the personalized configuration.
- customized
Cfg StringId - Personalized configuration ID.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners List<Property Map>
- status String
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- updated
Time String - Last operation time of the personalized configuration.
Look up Existing CustomizedCfg Resource
Get an existing CustomizedCfg 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?: CustomizedCfgState, opts?: CustomResourceOptions): CustomizedCfg@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_time: Optional[str] = None,
customized_cfg_content: Optional[str] = None,
customized_cfg_id: Optional[str] = None,
customized_cfg_name: Optional[str] = None,
description: Optional[str] = None,
listeners: Optional[Sequence[CustomizedCfgListenerArgs]] = None,
project_name: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[CustomizedCfgTagArgs]] = None,
updated_time: Optional[str] = None) -> CustomizedCfgfunc GetCustomizedCfg(ctx *Context, name string, id IDInput, state *CustomizedCfgState, opts ...ResourceOption) (*CustomizedCfg, error)public static CustomizedCfg Get(string name, Input<string> id, CustomizedCfgState? state, CustomResourceOptions? opts = null)public static CustomizedCfg get(String name, Output<String> id, CustomizedCfgState state, CustomResourceOptions options)resources: _: type: volcenginecc:alb:CustomizedCfg 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.
- Created
Time string - Creation time of the personalized configuration.
- Customized
Cfg stringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- Customized
Cfg stringId - Personalized configuration ID.
- Customized
Cfg stringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- Description string
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- Listeners
List<Volcengine.
Customized Cfg Listener> - Project
Name string - Project name to which the personalized configuration belongs.
- Status string
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
-
List<Volcengine.
Customized Cfg Tag> - Updated
Time string - Last operation time of the personalized configuration.
- Created
Time string - Creation time of the personalized configuration.
- Customized
Cfg stringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- Customized
Cfg stringId - Personalized configuration ID.
- Customized
Cfg stringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- Description string
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- Listeners
[]Customized
Cfg Listener Args - Project
Name string - Project name to which the personalized configuration belongs.
- Status string
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
-
[]Customized
Cfg Tag Args - Updated
Time string - Last operation time of the personalized configuration.
- created
Time String - Creation time of the personalized configuration.
- customized
Cfg StringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized
Cfg StringId - Personalized configuration ID.
- customized
Cfg StringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description String
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- listeners
List<Customized
Cfg Listener> - project
Name String - Project name to which the personalized configuration belongs.
- status String
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
-
List<Customized
Cfg Tag> - updated
Time String - Last operation time of the personalized configuration.
- created
Time string - Creation time of the personalized configuration.
- customized
Cfg stringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized
Cfg stringId - Personalized configuration ID.
- customized
Cfg stringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description string
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- listeners
Customized
Cfg Listener[] - project
Name string - Project name to which the personalized configuration belongs.
- status string
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
-
Customized
Cfg Tag[] - updated
Time string - Last operation time of the personalized configuration.
- created_
time str - Creation time of the personalized configuration.
- customized_
cfg_ strcontent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized_
cfg_ strid - Personalized configuration ID.
- customized_
cfg_ strname - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description str
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- listeners
Sequence[Customized
Cfg Listener Args] - project_
name str - Project name to which the personalized configuration belongs.
- status str
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
-
Sequence[Customized
Cfg Tag Args] - updated_
time str - Last operation time of the personalized configuration.
- created
Time String - Creation time of the personalized configuration.
- customized
Cfg StringContent - Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
- customized
Cfg StringId - Personalized configuration ID.
- customized
Cfg StringName - Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
- description String
- Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
- listeners List<Property Map>
- project
Name String - Project name to which the personalized configuration belongs.
- status String
- Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
- List<Property Map>
- updated
Time String - Last operation time of the personalized configuration.
Supporting Types
CustomizedCfgListener, CustomizedCfgListenerArgs
- Listener
Id string - Listener ID.
- Listener
Name string - Listener name.
- Port int
- Listener port.
- Protocol string
- Listener protocol.
- Listener
Id string - Listener ID.
- Listener
Name string - Listener name.
- Port int
- Listener port.
- Protocol string
- Listener protocol.
- listener
Id String - Listener ID.
- listener
Name String - Listener name.
- port Integer
- Listener port.
- protocol String
- Listener protocol.
- listener
Id string - Listener ID.
- listener
Name string - Listener name.
- port number
- Listener port.
- protocol string
- Listener protocol.
- listener_
id str - Listener ID.
- listener_
name str - Listener name.
- port int
- Listener port.
- protocol str
- Listener protocol.
- listener
Id String - Listener ID.
- listener
Name String - Listener name.
- port Number
- Listener port.
- protocol String
- Listener protocol.
CustomizedCfgTag, CustomizedCfgTagArgs
Import
$ pulumi import volcenginecc:alb/customizedCfg:CustomizedCfg example "customized_cfg_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Apr 23, 2026 by Volcengine
