published on Friday, Mar 27, 2026 by tencentcloudstack
published on Friday, Mar 27, 2026 by tencentcloudstack
Provides a resource to create a teo deploy config group version
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const teoDeployConfigGroupVersion = new tencentcloud.TeoDeployConfigGroupVersion("teo_deploy_config_group_version", {
zoneId: "zone-2xkazzl8yf6k",
envId: "env-3lchxiq1h855",
description: "Deploy config group version for production",
configGroupVersionInfos: [
{
versionId: "ver-3lchxizh2mqn",
},
{
versionId: "ver-3lchxjdciuzx",
},
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
teo_deploy_config_group_version = tencentcloud.TeoDeployConfigGroupVersion("teo_deploy_config_group_version",
zone_id="zone-2xkazzl8yf6k",
env_id="env-3lchxiq1h855",
description="Deploy config group version for production",
config_group_version_infos=[
{
"version_id": "ver-3lchxizh2mqn",
},
{
"version_id": "ver-3lchxjdciuzx",
},
])
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.NewTeoDeployConfigGroupVersion(ctx, "teo_deploy_config_group_version", &tencentcloud.TeoDeployConfigGroupVersionArgs{
ZoneId: pulumi.String("zone-2xkazzl8yf6k"),
EnvId: pulumi.String("env-3lchxiq1h855"),
Description: pulumi.String("Deploy config group version for production"),
ConfigGroupVersionInfos: tencentcloud.TeoDeployConfigGroupVersionConfigGroupVersionInfoArray{
&tencentcloud.TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs{
VersionId: pulumi.String("ver-3lchxizh2mqn"),
},
&tencentcloud.TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs{
VersionId: pulumi.String("ver-3lchxjdciuzx"),
},
},
})
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 teoDeployConfigGroupVersion = new Tencentcloud.TeoDeployConfigGroupVersion("teo_deploy_config_group_version", new()
{
ZoneId = "zone-2xkazzl8yf6k",
EnvId = "env-3lchxiq1h855",
Description = "Deploy config group version for production",
ConfigGroupVersionInfos = new[]
{
new Tencentcloud.Inputs.TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs
{
VersionId = "ver-3lchxizh2mqn",
},
new Tencentcloud.Inputs.TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs
{
VersionId = "ver-3lchxjdciuzx",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TeoDeployConfigGroupVersion;
import com.pulumi.tencentcloud.TeoDeployConfigGroupVersionArgs;
import com.pulumi.tencentcloud.inputs.TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs;
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 teoDeployConfigGroupVersion = new TeoDeployConfigGroupVersion("teoDeployConfigGroupVersion", TeoDeployConfigGroupVersionArgs.builder()
.zoneId("zone-2xkazzl8yf6k")
.envId("env-3lchxiq1h855")
.description("Deploy config group version for production")
.configGroupVersionInfos(
TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs.builder()
.versionId("ver-3lchxizh2mqn")
.build(),
TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs.builder()
.versionId("ver-3lchxjdciuzx")
.build())
.build());
}
}
resources:
teoDeployConfigGroupVersion:
type: tencentcloud:TeoDeployConfigGroupVersion
name: teo_deploy_config_group_version
properties:
zoneId: zone-2xkazzl8yf6k
envId: env-3lchxiq1h855
description: Deploy config group version for production
configGroupVersionInfos:
- versionId: ver-3lchxizh2mqn
- versionId: ver-3lchxjdciuzx
Create TeoDeployConfigGroupVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TeoDeployConfigGroupVersion(name: string, args: TeoDeployConfigGroupVersionArgs, opts?: CustomResourceOptions);@overload
def TeoDeployConfigGroupVersion(resource_name: str,
args: TeoDeployConfigGroupVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TeoDeployConfigGroupVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_group_version_infos: Optional[Sequence[TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs]] = None,
description: Optional[str] = None,
env_id: Optional[str] = None,
zone_id: Optional[str] = None,
teo_deploy_config_group_version_id: Optional[str] = None,
timeouts: Optional[TeoDeployConfigGroupVersionTimeoutsArgs] = None)func NewTeoDeployConfigGroupVersion(ctx *Context, name string, args TeoDeployConfigGroupVersionArgs, opts ...ResourceOption) (*TeoDeployConfigGroupVersion, error)public TeoDeployConfigGroupVersion(string name, TeoDeployConfigGroupVersionArgs args, CustomResourceOptions? opts = null)
public TeoDeployConfigGroupVersion(String name, TeoDeployConfigGroupVersionArgs args)
public TeoDeployConfigGroupVersion(String name, TeoDeployConfigGroupVersionArgs args, CustomResourceOptions options)
type: tencentcloud:TeoDeployConfigGroupVersion
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 TeoDeployConfigGroupVersionArgs
- 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 TeoDeployConfigGroupVersionArgs
- 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 TeoDeployConfigGroupVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeoDeployConfigGroupVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeoDeployConfigGroupVersionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
TeoDeployConfigGroupVersion 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 TeoDeployConfigGroupVersion resource accepts the following input properties:
- Config
Group List<TeoVersion Infos Deploy Config Group Version Config Group Version Info> - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- Description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- Env
Id string - Environment ID. Please specify the environment ID to which the version should be released.
- Zone
Id string - Zone ID.
- Teo
Deploy stringConfig Group Version Id - ID of the resource.
- Timeouts
Teo
Deploy Config Group Version Timeouts
- Config
Group []TeoVersion Infos Deploy Config Group Version Config Group Version Info Args - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- Description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- Env
Id string - Environment ID. Please specify the environment ID to which the version should be released.
- Zone
Id string - Zone ID.
- Teo
Deploy stringConfig Group Version Id - ID of the resource.
- Timeouts
Teo
Deploy Config Group Version Timeouts Args
- config
Group List<TeoVersion Infos Deploy Config Group Version Config Group Version Info> - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- description String
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env
Id String - Environment ID. Please specify the environment ID to which the version should be released.
- zone
Id String - Zone ID.
- teo
Deploy StringConfig Group Version Id - ID of the resource.
- timeouts
Teo
Deploy Config Group Version Timeouts
- config
Group TeoVersion Infos Deploy Config Group Version Config Group Version Info[] - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env
Id string - Environment ID. Please specify the environment ID to which the version should be released.
- zone
Id string - Zone ID.
- teo
Deploy stringConfig Group Version Id - ID of the resource.
- timeouts
Teo
Deploy Config Group Version Timeouts
- config_
group_ Sequence[Teoversion_ infos Deploy Config Group Version Config Group Version Info Args] - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- description str
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env_
id str - Environment ID. Please specify the environment ID to which the version should be released.
- zone_
id str - Zone ID.
- teo_
deploy_ strconfig_ group_ version_ id - ID of the resource.
- timeouts
Teo
Deploy Config Group Version Timeouts Args
- config
Group List<Property Map>Version Infos - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- description String
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env
Id String - Environment ID. Please specify the environment ID to which the version should be released.
- zone
Id String - Zone ID.
- teo
Deploy StringConfig Group Version Id - ID of the resource.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the TeoDeployConfigGroupVersion resource produces the following output properties:
- Deploy
Time string - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Message string
- Deploy result message.
- Record
Id string - Deploy record ID.
- Status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- Deploy
Time string - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Message string
- Deploy result message.
- Record
Id string - Deploy record ID.
- Status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- deploy
Time String - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- id String
- The provider-assigned unique ID for this managed resource.
- message String
- Deploy result message.
- record
Id String - Deploy record ID.
- status String
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- deploy
Time string - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- id string
- The provider-assigned unique ID for this managed resource.
- message string
- Deploy result message.
- record
Id string - Deploy record ID.
- status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- deploy_
time str - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- id str
- The provider-assigned unique ID for this managed resource.
- message str
- Deploy result message.
- record_
id str - Deploy record ID.
- status str
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- deploy
Time String - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- id String
- The provider-assigned unique ID for this managed resource.
- message String
- Deploy result message.
- record
Id String - Deploy record ID.
- status String
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
Look up Existing TeoDeployConfigGroupVersion Resource
Get an existing TeoDeployConfigGroupVersion 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?: TeoDeployConfigGroupVersionState, opts?: CustomResourceOptions): TeoDeployConfigGroupVersion@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_group_version_infos: Optional[Sequence[TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs]] = None,
deploy_time: Optional[str] = None,
description: Optional[str] = None,
env_id: Optional[str] = None,
message: Optional[str] = None,
record_id: Optional[str] = None,
status: Optional[str] = None,
teo_deploy_config_group_version_id: Optional[str] = None,
timeouts: Optional[TeoDeployConfigGroupVersionTimeoutsArgs] = None,
zone_id: Optional[str] = None) -> TeoDeployConfigGroupVersionfunc GetTeoDeployConfigGroupVersion(ctx *Context, name string, id IDInput, state *TeoDeployConfigGroupVersionState, opts ...ResourceOption) (*TeoDeployConfigGroupVersion, error)public static TeoDeployConfigGroupVersion Get(string name, Input<string> id, TeoDeployConfigGroupVersionState? state, CustomResourceOptions? opts = null)public static TeoDeployConfigGroupVersion get(String name, Output<String> id, TeoDeployConfigGroupVersionState state, CustomResourceOptions options)resources: _: type: tencentcloud:TeoDeployConfigGroupVersion 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.
- Config
Group List<TeoVersion Infos Deploy Config Group Version Config Group Version Info> - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- Deploy
Time string - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- Description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- Env
Id string - Environment ID. Please specify the environment ID to which the version should be released.
- Message string
- Deploy result message.
- Record
Id string - Deploy record ID.
- Status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- Teo
Deploy stringConfig Group Version Id - ID of the resource.
- Timeouts
Teo
Deploy Config Group Version Timeouts - Zone
Id string - Zone ID.
- Config
Group []TeoVersion Infos Deploy Config Group Version Config Group Version Info Args - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- Deploy
Time string - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- Description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- Env
Id string - Environment ID. Please specify the environment ID to which the version should be released.
- Message string
- Deploy result message.
- Record
Id string - Deploy record ID.
- Status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- Teo
Deploy stringConfig Group Version Id - ID of the resource.
- Timeouts
Teo
Deploy Config Group Version Timeouts Args - Zone
Id string - Zone ID.
- config
Group List<TeoVersion Infos Deploy Config Group Version Config Group Version Info> - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- deploy
Time String - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- description String
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env
Id String - Environment ID. Please specify the environment ID to which the version should be released.
- message String
- Deploy result message.
- record
Id String - Deploy record ID.
- status String
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- teo
Deploy StringConfig Group Version Id - ID of the resource.
- timeouts
Teo
Deploy Config Group Version Timeouts - zone
Id String - Zone ID.
- config
Group TeoVersion Infos Deploy Config Group Version Config Group Version Info[] - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- deploy
Time string - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env
Id string - Environment ID. Please specify the environment ID to which the version should be released.
- message string
- Deploy result message.
- record
Id string - Deploy record ID.
- status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- teo
Deploy stringConfig Group Version Id - ID of the resource.
- timeouts
Teo
Deploy Config Group Version Timeouts - zone
Id string - Zone ID.
- config_
group_ Sequence[Teoversion_ infos Deploy Config Group Version Config Group Version Info Args] - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- deploy_
time str - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- description str
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env_
id str - Environment ID. Please specify the environment ID to which the version should be released.
- message str
- Deploy result message.
- record_
id str - Deploy record ID.
- status str
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- teo_
deploy_ strconfig_ group_ version_ id - ID of the resource.
- timeouts
Teo
Deploy Config Group Version Timeouts Args - zone_
id str - Zone ID.
- config
Group List<Property Map>Version Infos - Version information required for release. Multiple versions of different configuration groups can be modified simultaneously, while each group allows modifying only one version at a time.
- deploy
Time String - Deploy time. The time follows the ISO 8601 standard in the date and time format.
- description String
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- env
Id String - Environment ID. Please specify the environment ID to which the version should be released.
- message String
- Deploy result message.
- record
Id String - Deploy record ID.
- status String
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- teo
Deploy StringConfig Group Version Id - ID of the resource.
- timeouts Property Map
- zone
Id String - Zone ID.
Supporting Types
TeoDeployConfigGroupVersionConfigGroupVersionInfo, TeoDeployConfigGroupVersionConfigGroupVersionInfoArgs
- Version
Id string - Version ID.
- Create
Time string - Version creation time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
- Description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- Group
Id string - Configuraration group ID.
- Group
Type string - Configuration group type. Valid values: l7_acceleration (L7 acceleration configuration group), edge_functions (Edge function configuration group).
- Status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- Version
Number string - Version No.
- Version
Id string - Version ID.
- Create
Time string - Version creation time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
- Description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- Group
Id string - Configuraration group ID.
- Group
Type string - Configuration group type. Valid values: l7_acceleration (L7 acceleration configuration group), edge_functions (Edge function configuration group).
- Status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- Version
Number string - Version No.
- version
Id String - Version ID.
- create
Time String - Version creation time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
- description String
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- group
Id String - Configuraration group ID.
- group
Type String - Configuration group type. Valid values: l7_acceleration (L7 acceleration configuration group), edge_functions (Edge function configuration group).
- status String
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- version
Number String - Version No.
- version
Id string - Version ID.
- create
Time string - Version creation time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
- description string
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- group
Id string - Configuraration group ID.
- group
Type string - Configuration group type. Valid values: l7_acceleration (L7 acceleration configuration group), edge_functions (Edge function configuration group).
- status string
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- version
Number string - Version No.
- version_
id str - Version ID.
- create_
time str - Version creation time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
- description str
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- group_
id str - Configuraration group ID.
- group_
type str - Configuration group type. Valid values: l7_acceleration (L7 acceleration configuration group), edge_functions (Edge function configuration group).
- status str
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- version_
number str - Version No.
- version
Id String - Version ID.
- create
Time String - Version creation time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
- description String
- Change description. It is used to describe the content and reasons for this change. A maximum of 100 characters are supported.
- group
Id String - Configuraration group ID.
- group
Type String - Configuration group type. Valid values: l7_acceleration (L7 acceleration configuration group), edge_functions (Edge function configuration group).
- status String
- Deploy status. Valid values: deploying (Deploying), failure (Deploy failed), success (Deploy successful).
- version
Number String - Version No.
TeoDeployConfigGroupVersionTimeouts, TeoDeployConfigGroupVersionTimeoutsArgs
- Create string
- Create string
- create String
- create string
- create str
- create String
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
published on Friday, Mar 27, 2026 by tencentcloudstack
