published on Thursday, Jul 16, 2026 by Pulumi
published on Thursday, Jul 16, 2026 by Pulumi
Provides a Cms Addon Release resource.
Release package of observability addon.
For information about Cms Addon Release and how to use it, see What is Addon Release.
NOTE: Available since v1.280.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new random.index.Integer("default", {
min: 10000,
max: 99999,
});
const defaultProject = new alicloud.log.Project("default", {projectName: `${name}-${_default.result}`});
const defaultWorkspace = new alicloud.cms.Workspace("default", {
workspaceName: name,
slsProject: defaultProject.projectName,
});
const defaultIntegrationPolicy = new alicloud.cms.IntegrationPolicy("default", {
policyType: "Cloud",
integrationPolicyName: name,
workspace: defaultWorkspace.id,
});
const defaultAddonRelease = new alicloud.cms.AddonRelease("default", {
integrationPolicyId: defaultIntegrationPolicy.id,
addonName: "cloud-acs-ecs",
addonVersion: "2.0.7",
workspace: defaultIntegrationPolicy.workspace,
});
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = random.Integer("default",
min=10000,
max=99999)
default_project = alicloud.log.Project("default", project_name=f"{name}-{default['result']}")
default_workspace = alicloud.cms.Workspace("default",
workspace_name=name,
sls_project=default_project.project_name)
default_integration_policy = alicloud.cms.IntegrationPolicy("default",
policy_type="Cloud",
integration_policy_name=name,
workspace=default_workspace.id)
default_addon_release = alicloud.cms.AddonRelease("default",
integration_policy_id=default_integration_policy.id,
addon_name="cloud-acs-ecs",
addon_version="2.0.7",
workspace=default_integration_policy.workspace)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cms"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/log"
"github.com/pulumi/pulumi-random/sdk/v4/go/random"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
Min: 10000,
Max: 99999,
})
if err != nil {
return err
}
defaultProject, err := log.NewProject(ctx, "default", &log.ProjectArgs{
ProjectName: pulumi.Sprintf("%v-%v", name, _default.Result),
})
if err != nil {
return err
}
defaultWorkspace, err := cms.NewWorkspace(ctx, "default", &cms.WorkspaceArgs{
WorkspaceName: pulumi.String(name),
SlsProject: defaultProject.ProjectName,
})
if err != nil {
return err
}
defaultIntegrationPolicy, err := cms.NewIntegrationPolicy(ctx, "default", &cms.IntegrationPolicyArgs{
PolicyType: pulumi.String("Cloud"),
IntegrationPolicyName: pulumi.String(name),
Workspace: defaultWorkspace.ID(),
})
if err != nil {
return err
}
_, err = cms.NewAddonRelease(ctx, "default", &cms.AddonReleaseArgs{
IntegrationPolicyId: defaultIntegrationPolicy.ID(),
AddonName: pulumi.String("cloud-acs-ecs"),
AddonVersion: pulumi.String("2.0.7"),
Workspace: defaultIntegrationPolicy.Workspace,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new Random.Integer("default", new()
{
Min = 10000,
Max = 99999,
});
var defaultProject = new AliCloud.Log.Project("default", new()
{
ProjectName = $"{name}-{@default.Result}",
});
var defaultWorkspace = new AliCloud.Cms.Workspace("default", new()
{
WorkspaceName = name,
SlsProject = defaultProject.ProjectName,
});
var defaultIntegrationPolicy = new AliCloud.Cms.IntegrationPolicy("default", new()
{
PolicyType = "Cloud",
IntegrationPolicyName = name,
Workspace = defaultWorkspace.Id,
});
var defaultAddonRelease = new AliCloud.Cms.AddonRelease("default", new()
{
IntegrationPolicyId = defaultIntegrationPolicy.Id,
AddonName = "cloud-acs-ecs",
AddonVersion = "2.0.7",
Workspace = defaultIntegrationPolicy.Workspace,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.random.Integer;
import com.pulumi.random.IntegerArgs;
import com.pulumi.alicloud.log.Project;
import com.pulumi.alicloud.log.ProjectArgs;
import com.pulumi.alicloud.cms.Workspace;
import com.pulumi.alicloud.cms.WorkspaceArgs;
import com.pulumi.alicloud.cms.IntegrationPolicy;
import com.pulumi.alicloud.cms.IntegrationPolicyArgs;
import com.pulumi.alicloud.cms.AddonRelease;
import com.pulumi.alicloud.cms.AddonReleaseArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new Integer("default", IntegerArgs.builder()
.min(10000)
.max(99999)
.build());
var defaultProject = new Project("defaultProject", ProjectArgs.builder()
.projectName(String.format("%s-%s", name,default_.result()))
.build());
var defaultWorkspace = new Workspace("defaultWorkspace", WorkspaceArgs.builder()
.workspaceName(name)
.slsProject(defaultProject.projectName())
.build());
var defaultIntegrationPolicy = new IntegrationPolicy("defaultIntegrationPolicy", IntegrationPolicyArgs.builder()
.policyType("Cloud")
.integrationPolicyName(name)
.workspace(defaultWorkspace.id())
.build());
var defaultAddonRelease = new AddonRelease("defaultAddonRelease", AddonReleaseArgs.builder()
.integrationPolicyId(defaultIntegrationPolicy.id())
.addonName("cloud-acs-ecs")
.addonVersion("2.0.7")
.workspace(defaultIntegrationPolicy.workspace())
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: random:Integer
properties:
min: 10000
max: 99999
defaultProject:
type: alicloud:log:Project
name: default
properties:
projectName: ${name}-${default.result}
defaultWorkspace:
type: alicloud:cms:Workspace
name: default
properties:
workspaceName: ${name}
slsProject: ${defaultProject.projectName}
defaultIntegrationPolicy:
type: alicloud:cms:IntegrationPolicy
name: default
properties:
policyType: Cloud
integrationPolicyName: ${name}
workspace: ${defaultWorkspace.id}
defaultAddonRelease:
type: alicloud:cms:AddonRelease
name: default
properties:
integrationPolicyId: ${defaultIntegrationPolicy.id}
addonName: cloud-acs-ecs
addonVersion: 2.0.7
workspace: ${defaultIntegrationPolicy.workspace}
pulumi {
required_providers {
alicloud = {
source = "pulumi/alicloud"
}
random = {
source = "pulumi/random"
}
}
}
resource "random_integer" "default" {
min = 10000
max = 99999
}
resource "alicloud_log_project" "default" {
project_name ="${var.name}-${random_integer.default.result}"
}
resource "alicloud_cms_workspace" "default" {
workspace_name = var.name
sls_project = alicloud_log_project.default.project_name
}
resource "alicloud_cms_integrationpolicy" "default" {
policy_type = "Cloud"
integration_policy_name = var.name
workspace = alicloud_cms_workspace.default.id
}
resource "alicloud_cms_addonrelease" "default" {
integration_policy_id = alicloud_cms_integrationpolicy.default.id
addon_name = "cloud-acs-ecs"
addon_version = "2.0.7"
workspace = alicloud_cms_integrationpolicy.default.workspace
}
variable "name" {
type = string
default = "terraform-example"
}
📚 Need more examples? VIEW MORE EXAMPLES
Create AddonRelease Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AddonRelease(name: string, args: AddonReleaseArgs, opts?: CustomResourceOptions);@overload
def AddonRelease(resource_name: str,
args: AddonReleaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AddonRelease(resource_name: str,
opts: Optional[ResourceOptions] = None,
addon_name: Optional[str] = None,
addon_version: Optional[str] = None,
integration_policy_id: Optional[str] = None,
addon_release_name: Optional[str] = None,
aliyun_lang: Optional[str] = None,
config: Optional[str] = None,
dry_run: Optional[bool] = None,
env_type: Optional[str] = None,
workspace: Optional[str] = None)func NewAddonRelease(ctx *Context, name string, args AddonReleaseArgs, opts ...ResourceOption) (*AddonRelease, error)public AddonRelease(string name, AddonReleaseArgs args, CustomResourceOptions? opts = null)
public AddonRelease(String name, AddonReleaseArgs args)
public AddonRelease(String name, AddonReleaseArgs args, CustomResourceOptions options)
type: alicloud:cms:AddonRelease
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "alicloud_cms_addonrelease" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AddonReleaseArgs
- 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 AddonReleaseArgs
- 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 AddonReleaseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AddonReleaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AddonReleaseArgs
- 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 alicloudAddonReleaseResource = new AliCloud.Cms.AddonRelease("alicloudAddonReleaseResource", new()
{
AddonName = "string",
AddonVersion = "string",
IntegrationPolicyId = "string",
AddonReleaseName = "string",
AliyunLang = "string",
Config = "string",
DryRun = false,
EnvType = "string",
Workspace = "string",
});
example, err := cms.NewAddonRelease(ctx, "alicloudAddonReleaseResource", &cms.AddonReleaseArgs{
AddonName: pulumi.String("string"),
AddonVersion: pulumi.String("string"),
IntegrationPolicyId: pulumi.String("string"),
AddonReleaseName: pulumi.String("string"),
AliyunLang: pulumi.String("string"),
Config: pulumi.String("string"),
DryRun: pulumi.Bool(false),
EnvType: pulumi.String("string"),
Workspace: pulumi.String("string"),
})
resource "alicloud_cms_addonrelease" "alicloudAddonReleaseResource" {
addon_name = "string"
addon_version = "string"
integration_policy_id = "string"
addon_release_name = "string"
aliyun_lang = "string"
config = "string"
dry_run = false
env_type = "string"
workspace = "string"
}
var alicloudAddonReleaseResource = new com.pulumi.alicloud.cms.AddonRelease("alicloudAddonReleaseResource", com.pulumi.alicloud.cms.AddonReleaseArgs.builder()
.addonName("string")
.addonVersion("string")
.integrationPolicyId("string")
.addonReleaseName("string")
.aliyunLang("string")
.config("string")
.dryRun(false)
.envType("string")
.workspace("string")
.build());
alicloud_addon_release_resource = alicloud.cms.AddonRelease("alicloudAddonReleaseResource",
addon_name="string",
addon_version="string",
integration_policy_id="string",
addon_release_name="string",
aliyun_lang="string",
config="string",
dry_run=False,
env_type="string",
workspace="string")
const alicloudAddonReleaseResource = new alicloud.cms.AddonRelease("alicloudAddonReleaseResource", {
addonName: "string",
addonVersion: "string",
integrationPolicyId: "string",
addonReleaseName: "string",
aliyunLang: "string",
config: "string",
dryRun: false,
envType: "string",
workspace: "string",
});
type: alicloud:cms:AddonRelease
properties:
addonName: string
addonReleaseName: string
addonVersion: string
aliyunLang: string
config: string
dryRun: false
envType: string
integrationPolicyId: string
workspace: string
AddonRelease 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 AddonRelease resource accepts the following input properties:
- Addon
Name string - The name of the add-on to integrate.
- Addon
Version string - The version of the add-on to integrate.
- Integration
Policy stringId - The ID of the environment policy.
- Addon
Release stringName - The name of the release after the integration.
- Aliyun
Lang string - The language of the add-on. Valid values:
zh,en. - Config string
- The metadata.
- Dry
Run bool - Specifies whether to perform a dry run. Valid values:
true,false. - Env
Type string - The environment type. Valid values:
CS,ECS,Cloud. - Workspace string
- The name of the workspace where the add-on is installed.
- Addon
Name string - The name of the add-on to integrate.
- Addon
Version string - The version of the add-on to integrate.
- Integration
Policy stringId - The ID of the environment policy.
- Addon
Release stringName - The name of the release after the integration.
- Aliyun
Lang string - The language of the add-on. Valid values:
zh,en. - Config string
- The metadata.
- Dry
Run bool - Specifies whether to perform a dry run. Valid values:
true,false. - Env
Type string - The environment type. Valid values:
CS,ECS,Cloud. - Workspace string
- The name of the workspace where the add-on is installed.
- addon_
name string - The name of the add-on to integrate.
- addon_
version string - The version of the add-on to integrate.
- integration_
policy_ stringid - The ID of the environment policy.
- addon_
release_ stringname - The name of the release after the integration.
- aliyun_
lang string - The language of the add-on. Valid values:
zh,en. - config string
- The metadata.
- dry_
run bool - Specifies whether to perform a dry run. Valid values:
true,false. - env_
type string - The environment type. Valid values:
CS,ECS,Cloud. - workspace string
- The name of the workspace where the add-on is installed.
- addon
Name String - The name of the add-on to integrate.
- addon
Version String - The version of the add-on to integrate.
- integration
Policy StringId - The ID of the environment policy.
- addon
Release StringName - The name of the release after the integration.
- aliyun
Lang String - The language of the add-on. Valid values:
zh,en. - config String
- The metadata.
- dry
Run Boolean - Specifies whether to perform a dry run. Valid values:
true,false. - env
Type String - The environment type. Valid values:
CS,ECS,Cloud. - workspace String
- The name of the workspace where the add-on is installed.
- addon
Name string - The name of the add-on to integrate.
- addon
Version string - The version of the add-on to integrate.
- integration
Policy stringId - The ID of the environment policy.
- addon
Release stringName - The name of the release after the integration.
- aliyun
Lang string - The language of the add-on. Valid values:
zh,en. - config string
- The metadata.
- dry
Run boolean - Specifies whether to perform a dry run. Valid values:
true,false. - env
Type string - The environment type. Valid values:
CS,ECS,Cloud. - workspace string
- The name of the workspace where the add-on is installed.
- addon_
name str - The name of the add-on to integrate.
- addon_
version str - The version of the add-on to integrate.
- integration_
policy_ strid - The ID of the environment policy.
- addon_
release_ strname - The name of the release after the integration.
- aliyun_
lang str - The language of the add-on. Valid values:
zh,en. - config str
- The metadata.
- dry_
run bool - Specifies whether to perform a dry run. Valid values:
true,false. - env_
type str - The environment type. Valid values:
CS,ECS,Cloud. - workspace str
- The name of the workspace where the add-on is installed.
- addon
Name String - The name of the add-on to integrate.
- addon
Version String - The version of the add-on to integrate.
- integration
Policy StringId - The ID of the environment policy.
- addon
Release StringName - The name of the release after the integration.
- aliyun
Lang String - The language of the add-on. Valid values:
zh,en. - config String
- The metadata.
- dry
Run Boolean - Specifies whether to perform a dry run. Valid values:
true,false. - env
Type String - The environment type. Valid values:
CS,ECS,Cloud. - workspace String
- The name of the workspace where the add-on is installed.
Outputs
All input properties are implicitly available as output properties. Additionally, the AddonRelease resource produces the following output properties:
- Create
Time string - The time when the add-on was accessed.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The ID of the region.
- Create
Time string - The time when the add-on was accessed.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The ID of the region.
- create_
time string - The time when the add-on was accessed.
- id string
- The provider-assigned unique ID for this managed resource.
- region_
id string - The ID of the region.
- create
Time String - The time when the add-on was accessed.
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The ID of the region.
- create
Time string - The time when the add-on was accessed.
- id string
- The provider-assigned unique ID for this managed resource.
- region
Id string - The ID of the region.
- create_
time str - The time when the add-on was accessed.
- id str
- The provider-assigned unique ID for this managed resource.
- region_
id str - The ID of the region.
- create
Time String - The time when the add-on was accessed.
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The ID of the region.
Look up Existing AddonRelease Resource
Get an existing AddonRelease 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?: AddonReleaseState, opts?: CustomResourceOptions): AddonRelease@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addon_name: Optional[str] = None,
addon_release_name: Optional[str] = None,
addon_version: Optional[str] = None,
aliyun_lang: Optional[str] = None,
config: Optional[str] = None,
create_time: Optional[str] = None,
dry_run: Optional[bool] = None,
env_type: Optional[str] = None,
integration_policy_id: Optional[str] = None,
region_id: Optional[str] = None,
workspace: Optional[str] = None) -> AddonReleasefunc GetAddonRelease(ctx *Context, name string, id IDInput, state *AddonReleaseState, opts ...ResourceOption) (*AddonRelease, error)public static AddonRelease Get(string name, Input<string> id, AddonReleaseState? state, CustomResourceOptions? opts = null)public static AddonRelease get(String name, Output<String> id, AddonReleaseState state, CustomResourceOptions options)resources: _: type: alicloud:cms:AddonRelease get: id: ${id}import {
to = alicloud_cms_addonrelease.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.
- Addon
Name string - The name of the add-on to integrate.
- Addon
Release stringName - The name of the release after the integration.
- Addon
Version string - The version of the add-on to integrate.
- Aliyun
Lang string - The language of the add-on. Valid values:
zh,en. - Config string
- The metadata.
- Create
Time string - The time when the add-on was accessed.
- Dry
Run bool - Specifies whether to perform a dry run. Valid values:
true,false. - Env
Type string - The environment type. Valid values:
CS,ECS,Cloud. - Integration
Policy stringId - The ID of the environment policy.
- Region
Id string - The ID of the region.
- Workspace string
- The name of the workspace where the add-on is installed.
- Addon
Name string - The name of the add-on to integrate.
- Addon
Release stringName - The name of the release after the integration.
- Addon
Version string - The version of the add-on to integrate.
- Aliyun
Lang string - The language of the add-on. Valid values:
zh,en. - Config string
- The metadata.
- Create
Time string - The time when the add-on was accessed.
- Dry
Run bool - Specifies whether to perform a dry run. Valid values:
true,false. - Env
Type string - The environment type. Valid values:
CS,ECS,Cloud. - Integration
Policy stringId - The ID of the environment policy.
- Region
Id string - The ID of the region.
- Workspace string
- The name of the workspace where the add-on is installed.
- addon_
name string - The name of the add-on to integrate.
- addon_
release_ stringname - The name of the release after the integration.
- addon_
version string - The version of the add-on to integrate.
- aliyun_
lang string - The language of the add-on. Valid values:
zh,en. - config string
- The metadata.
- create_
time string - The time when the add-on was accessed.
- dry_
run bool - Specifies whether to perform a dry run. Valid values:
true,false. - env_
type string - The environment type. Valid values:
CS,ECS,Cloud. - integration_
policy_ stringid - The ID of the environment policy.
- region_
id string - The ID of the region.
- workspace string
- The name of the workspace where the add-on is installed.
- addon
Name String - The name of the add-on to integrate.
- addon
Release StringName - The name of the release after the integration.
- addon
Version String - The version of the add-on to integrate.
- aliyun
Lang String - The language of the add-on. Valid values:
zh,en. - config String
- The metadata.
- create
Time String - The time when the add-on was accessed.
- dry
Run Boolean - Specifies whether to perform a dry run. Valid values:
true,false. - env
Type String - The environment type. Valid values:
CS,ECS,Cloud. - integration
Policy StringId - The ID of the environment policy.
- region
Id String - The ID of the region.
- workspace String
- The name of the workspace where the add-on is installed.
- addon
Name string - The name of the add-on to integrate.
- addon
Release stringName - The name of the release after the integration.
- addon
Version string - The version of the add-on to integrate.
- aliyun
Lang string - The language of the add-on. Valid values:
zh,en. - config string
- The metadata.
- create
Time string - The time when the add-on was accessed.
- dry
Run boolean - Specifies whether to perform a dry run. Valid values:
true,false. - env
Type string - The environment type. Valid values:
CS,ECS,Cloud. - integration
Policy stringId - The ID of the environment policy.
- region
Id string - The ID of the region.
- workspace string
- The name of the workspace where the add-on is installed.
- addon_
name str - The name of the add-on to integrate.
- addon_
release_ strname - The name of the release after the integration.
- addon_
version str - The version of the add-on to integrate.
- aliyun_
lang str - The language of the add-on. Valid values:
zh,en. - config str
- The metadata.
- create_
time str - The time when the add-on was accessed.
- dry_
run bool - Specifies whether to perform a dry run. Valid values:
true,false. - env_
type str - The environment type. Valid values:
CS,ECS,Cloud. - integration_
policy_ strid - The ID of the environment policy.
- region_
id str - The ID of the region.
- workspace str
- The name of the workspace where the add-on is installed.
- addon
Name String - The name of the add-on to integrate.
- addon
Release StringName - The name of the release after the integration.
- addon
Version String - The version of the add-on to integrate.
- aliyun
Lang String - The language of the add-on. Valid values:
zh,en. - config String
- The metadata.
- create
Time String - The time when the add-on was accessed.
- dry
Run Boolean - Specifies whether to perform a dry run. Valid values:
true,false. - env
Type String - The environment type. Valid values:
CS,ECS,Cloud. - integration
Policy StringId - The ID of the environment policy.
- region
Id String - The ID of the region.
- workspace String
- The name of the workspace where the add-on is installed.
Import
Cms Addon Release can be imported using the id, e.g.
$ pulumi import alicloud:cms/addonRelease:AddonRelease example <integration_policy_id>:<addon_release_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.
published on Thursday, Jul 16, 2026 by Pulumi