Alibaba Cloud v3.87.0 published on Saturday, Oct 18, 2025 by Pulumi
alicloud.ros.getStackInstances
This data source provides the Ros Stack Instances of the current Alibaba Cloud user.
NOTE: Available in v1.145.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.ros.getStackInstances({
stackGroupName: "example_value",
ids: [
"example_value-1",
"example_value-2",
],
enableDetails: true,
});
export const rosStackInstanceId1 = ids.then(ids => ids.instances?.[0]?.id);
const status = alicloud.ros.getStackInstances({
stackGroupName: "example_value",
status: "CURRENT",
enableDetails: true,
});
export const rosStackInstanceId2 = status.then(status => status.instances?.[0]?.id);
const regionId = alicloud.ros.getStackInstances({
stackGroupName: "example_value",
stackInstanceRegionId: "example_value",
enableDetails: true,
});
export const rosStackInstanceId3 = regionId.then(regionId => regionId.instances?.[0]?.id);
const accountId = alicloud.ros.getStackInstances({
stackGroupName: "example_value",
stackInstanceAccountId: "example_value",
enableDetails: true,
});
export const rosStackInstanceId4 = accountId.then(accountId => accountId.instances?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.ros.get_stack_instances(stack_group_name="example_value",
ids=[
"example_value-1",
"example_value-2",
],
enable_details=True)
pulumi.export("rosStackInstanceId1", ids.instances[0].id)
status = alicloud.ros.get_stack_instances(stack_group_name="example_value",
status="CURRENT",
enable_details=True)
pulumi.export("rosStackInstanceId2", status.instances[0].id)
region_id = alicloud.ros.get_stack_instances(stack_group_name="example_value",
stack_instance_region_id="example_value",
enable_details=True)
pulumi.export("rosStackInstanceId3", region_id.instances[0].id)
account_id = alicloud.ros.get_stack_instances(stack_group_name="example_value",
stack_instance_account_id="example_value",
enable_details=True)
pulumi.export("rosStackInstanceId4", account_id.instances[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
ids, err := ros.GetStackInstances(ctx, &ros.GetStackInstancesArgs{
StackGroupName: "example_value",
Ids: []string{
"example_value-1",
"example_value-2",
},
EnableDetails: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
ctx.Export("rosStackInstanceId1", ids.Instances[0].Id)
status, err := ros.GetStackInstances(ctx, &ros.GetStackInstancesArgs{
StackGroupName: "example_value",
Status: pulumi.StringRef("CURRENT"),
EnableDetails: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
ctx.Export("rosStackInstanceId2", status.Instances[0].Id)
regionId, err := ros.GetStackInstances(ctx, &ros.GetStackInstancesArgs{
StackGroupName: "example_value",
StackInstanceRegionId: pulumi.StringRef("example_value"),
EnableDetails: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
ctx.Export("rosStackInstanceId3", regionId.Instances[0].Id)
accountId, err := ros.GetStackInstances(ctx, &ros.GetStackInstancesArgs{
StackGroupName: "example_value",
StackInstanceAccountId: pulumi.StringRef("example_value"),
EnableDetails: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
ctx.Export("rosStackInstanceId4", accountId.Instances[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var ids = AliCloud.Ros.GetStackInstances.Invoke(new()
{
StackGroupName = "example_value",
Ids = new[]
{
"example_value-1",
"example_value-2",
},
EnableDetails = true,
});
var status = AliCloud.Ros.GetStackInstances.Invoke(new()
{
StackGroupName = "example_value",
Status = "CURRENT",
EnableDetails = true,
});
var regionId = AliCloud.Ros.GetStackInstances.Invoke(new()
{
StackGroupName = "example_value",
StackInstanceRegionId = "example_value",
EnableDetails = true,
});
var accountId = AliCloud.Ros.GetStackInstances.Invoke(new()
{
StackGroupName = "example_value",
StackInstanceAccountId = "example_value",
EnableDetails = true,
});
return new Dictionary<string, object?>
{
["rosStackInstanceId1"] = ids.Apply(getStackInstancesResult => getStackInstancesResult.Instances[0]?.Id),
["rosStackInstanceId2"] = status.Apply(getStackInstancesResult => getStackInstancesResult.Instances[0]?.Id),
["rosStackInstanceId3"] = regionId.Apply(getStackInstancesResult => getStackInstancesResult.Instances[0]?.Id),
["rosStackInstanceId4"] = accountId.Apply(getStackInstancesResult => getStackInstancesResult.Instances[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ros.RosFunctions;
import com.pulumi.alicloud.ros.inputs.GetStackInstancesArgs;
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) {
final var ids = RosFunctions.getStackInstances(GetStackInstancesArgs.builder()
.stackGroupName("example_value")
.ids(
"example_value-1",
"example_value-2")
.enableDetails(true)
.build());
ctx.export("rosStackInstanceId1", ids.instances()[0].id());
final var status = RosFunctions.getStackInstances(GetStackInstancesArgs.builder()
.stackGroupName("example_value")
.status("CURRENT")
.enableDetails(true)
.build());
ctx.export("rosStackInstanceId2", status.instances()[0].id());
final var regionId = RosFunctions.getStackInstances(GetStackInstancesArgs.builder()
.stackGroupName("example_value")
.stackInstanceRegionId("example_value")
.enableDetails(true)
.build());
ctx.export("rosStackInstanceId3", regionId.instances()[0].id());
final var accountId = RosFunctions.getStackInstances(GetStackInstancesArgs.builder()
.stackGroupName("example_value")
.stackInstanceAccountId("example_value")
.enableDetails(true)
.build());
ctx.export("rosStackInstanceId4", accountId.instances()[0].id());
}
}
variables:
ids:
fn::invoke:
function: alicloud:ros:getStackInstances
arguments:
stackGroupName: example_value
ids:
- example_value-1
- example_value-2
enableDetails: true
status:
fn::invoke:
function: alicloud:ros:getStackInstances
arguments:
stackGroupName: example_value
status: CURRENT
enableDetails: true
regionId:
fn::invoke:
function: alicloud:ros:getStackInstances
arguments:
stackGroupName: example_value
stackInstanceRegionId: example_value
enableDetails: true
accountId:
fn::invoke:
function: alicloud:ros:getStackInstances
arguments:
stackGroupName: example_value
stackInstanceAccountId: example_value
enableDetails: true
outputs:
rosStackInstanceId1: ${ids.instances[0].id}
rosStackInstanceId2: ${status.instances[0].id}
rosStackInstanceId3: ${regionId.instances[0].id}
rosStackInstanceId4: ${accountId.instances[0].id}
Using getStackInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getStackInstances(args: GetStackInstancesArgs, opts?: InvokeOptions): Promise<GetStackInstancesResult>
function getStackInstancesOutput(args: GetStackInstancesOutputArgs, opts?: InvokeOptions): Output<GetStackInstancesResult>def get_stack_instances(enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
output_file: Optional[str] = None,
stack_group_name: Optional[str] = None,
stack_instance_account_id: Optional[str] = None,
stack_instance_region_id: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetStackInstancesResult
def get_stack_instances_output(enable_details: Optional[pulumi.Input[bool]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
output_file: Optional[pulumi.Input[str]] = None,
stack_group_name: Optional[pulumi.Input[str]] = None,
stack_instance_account_id: Optional[pulumi.Input[str]] = None,
stack_instance_region_id: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetStackInstancesResult]func GetStackInstances(ctx *Context, args *GetStackInstancesArgs, opts ...InvokeOption) (*GetStackInstancesResult, error)
func GetStackInstancesOutput(ctx *Context, args *GetStackInstancesOutputArgs, opts ...InvokeOption) GetStackInstancesResultOutput> Note: This function is named GetStackInstances in the Go SDK.
public static class GetStackInstances
{
public static Task<GetStackInstancesResult> InvokeAsync(GetStackInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetStackInstancesResult> Invoke(GetStackInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetStackInstancesResult> getStackInstances(GetStackInstancesArgs args, InvokeOptions options)
public static Output<GetStackInstancesResult> getStackInstances(GetStackInstancesArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:ros/getStackInstances:getStackInstances
arguments:
# arguments dictionaryThe following arguments are supported:
- Stack
Group stringName - The name of the stack group.
- Enable
Details bool - Default to
false. Set it totruecan output more details about resource attributes. - Ids List<string>
- A list of Stack Instance IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Stack
Instance stringAccount Id - The account to which the stack instance belongs.
- Stack
Instance stringRegion Id - The region of the stack instance.
- Status string
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- Stack
Group stringName - The name of the stack group.
- Enable
Details bool - Default to
false. Set it totruecan output more details about resource attributes. - Ids []string
- A list of Stack Instance IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Stack
Instance stringAccount Id - The account to which the stack instance belongs.
- Stack
Instance stringRegion Id - The region of the stack instance.
- Status string
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- stack
Group StringName - The name of the stack group.
- enable
Details Boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids List<String>
- A list of Stack Instance IDs.
- output
File String - File name where to save data source results (after running
pulumi preview). - stack
Instance StringAccount Id - The account to which the stack instance belongs.
- stack
Instance StringRegion Id - The region of the stack instance.
- status String
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- stack
Group stringName - The name of the stack group.
- enable
Details boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids string[]
- A list of Stack Instance IDs.
- output
File string - File name where to save data source results (after running
pulumi preview). - stack
Instance stringAccount Id - The account to which the stack instance belongs.
- stack
Instance stringRegion Id - The region of the stack instance.
- status string
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- stack_
group_ strname - The name of the stack group.
- enable_
details bool - Default to
false. Set it totruecan output more details about resource attributes. - ids Sequence[str]
- A list of Stack Instance IDs.
- output_
file str - File name where to save data source results (after running
pulumi preview). - stack_
instance_ straccount_ id - The account to which the stack instance belongs.
- stack_
instance_ strregion_ id - The region of the stack instance.
- status str
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- stack
Group StringName - The name of the stack group.
- enable
Details Boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids List<String>
- A list of Stack Instance IDs.
- output
File String - File name where to save data source results (after running
pulumi preview). - stack
Instance StringAccount Id - The account to which the stack instance belongs.
- stack
Instance StringRegion Id - The region of the stack instance.
- status String
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
getStackInstances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Instances
List<Pulumi.
Ali Cloud. Ros. Outputs. Get Stack Instances Instance> - Stack
Group stringName - Enable
Details bool - Output
File string - Stack
Instance stringAccount Id - Stack
Instance stringRegion Id - Status string
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Instances
[]Get
Stack Instances Instance - Stack
Group stringName - Enable
Details bool - Output
File string - Stack
Instance stringAccount Id - Stack
Instance stringRegion Id - Status string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- instances
List<Get
Stack Instances Instance> - stack
Group StringName - enable
Details Boolean - output
File String - stack
Instance StringAccount Id - stack
Instance StringRegion Id - status String
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- instances
Get
Stack Instances Instance[] - stack
Group stringName - enable
Details boolean - output
File string - stack
Instance stringAccount Id - stack
Instance stringRegion Id - status string
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- instances
Sequence[Get
Stack Instances Instance] - stack_
group_ strname - enable_
details bool - output_
file str - stack_
instance_ straccount_ id - stack_
instance_ strregion_ id - status str
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- instances List<Property Map>
- stack
Group StringName - enable
Details Boolean - output
File String - stack
Instance StringAccount Id - stack
Instance StringRegion Id - status String
Supporting Types
GetStackInstancesInstance
- Id string
- The ID of the Stack Instance. The value formats as
<stack_group_name>:<stack_instance_account_id>:<stack_instance_region_id>. - Parameter
Overrides List<Pulumi.Ali Cloud. Ros. Inputs. Get Stack Instances Instance Parameter Override> - ParameterOverrides.
- Stack
Group stringId - The ID of the stack group.
- Stack
Group stringName - The name of the stack group.
- Stack
Id string - The ID of the stack corresponding to the stack instance.
- Stack
Instance stringAccount Id - The account to which the stack instance belongs.
- Stack
Instance stringRegion Id - The region of the stack instance.
- Status string
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- Status
Reason string - The reason why the stack is in its current state.
- Id string
- The ID of the Stack Instance. The value formats as
<stack_group_name>:<stack_instance_account_id>:<stack_instance_region_id>. - Parameter
Overrides []GetStack Instances Instance Parameter Override - ParameterOverrides.
- Stack
Group stringId - The ID of the stack group.
- Stack
Group stringName - The name of the stack group.
- Stack
Id string - The ID of the stack corresponding to the stack instance.
- Stack
Instance stringAccount Id - The account to which the stack instance belongs.
- Stack
Instance stringRegion Id - The region of the stack instance.
- Status string
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- Status
Reason string - The reason why the stack is in its current state.
- id String
- The ID of the Stack Instance. The value formats as
<stack_group_name>:<stack_instance_account_id>:<stack_instance_region_id>. - parameter
Overrides List<GetStack Instances Instance Parameter Override> - ParameterOverrides.
- stack
Group StringId - The ID of the stack group.
- stack
Group StringName - The name of the stack group.
- stack
Id String - The ID of the stack corresponding to the stack instance.
- stack
Instance StringAccount Id - The account to which the stack instance belongs.
- stack
Instance StringRegion Id - The region of the stack instance.
- status String
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- status
Reason String - The reason why the stack is in its current state.
- id string
- The ID of the Stack Instance. The value formats as
<stack_group_name>:<stack_instance_account_id>:<stack_instance_region_id>. - parameter
Overrides GetStack Instances Instance Parameter Override[] - ParameterOverrides.
- stack
Group stringId - The ID of the stack group.
- stack
Group stringName - The name of the stack group.
- stack
Id string - The ID of the stack corresponding to the stack instance.
- stack
Instance stringAccount Id - The account to which the stack instance belongs.
- stack
Instance stringRegion Id - The region of the stack instance.
- status string
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- status
Reason string - The reason why the stack is in its current state.
- id str
- The ID of the Stack Instance. The value formats as
<stack_group_name>:<stack_instance_account_id>:<stack_instance_region_id>. - parameter_
overrides Sequence[GetStack Instances Instance Parameter Override] - ParameterOverrides.
- stack_
group_ strid - The ID of the stack group.
- stack_
group_ strname - The name of the stack group.
- stack_
id str - The ID of the stack corresponding to the stack instance.
- stack_
instance_ straccount_ id - The account to which the stack instance belongs.
- stack_
instance_ strregion_ id - The region of the stack instance.
- status str
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- status_
reason str - The reason why the stack is in its current state.
- id String
- The ID of the Stack Instance. The value formats as
<stack_group_name>:<stack_instance_account_id>:<stack_instance_region_id>. - parameter
Overrides List<Property Map> - ParameterOverrides.
- stack
Group StringId - The ID of the stack group.
- stack
Group StringName - The name of the stack group.
- stack
Id String - The ID of the stack corresponding to the stack instance.
- stack
Instance StringAccount Id - The account to which the stack instance belongs.
- stack
Instance StringRegion Id - The region of the stack instance.
- status String
- The status of the stack instance. Valid values:
CURRENTorOUTDATED.CURRENT: The stack corresponding to the stack instance is up to date with the stack group.OUTDATED: The stack corresponding to the stack instance is not up to date with the stack group. TheOUTDATEDstate has the following possible causes:- When the CreateStackInstances operation is called to create stack instances, the corresponding stacks fail to be created.
- When the UpdateStackInstances or UpdateStackGroup operation is called to update stack instances, the corresponding stacks fail to be updated, or only some of the stack instances are updated.
- The create or update operation is not complete.
- status
Reason String - The reason why the stack is in its current state.
GetStackInstancesInstanceParameterOverride
- Parameter
Key string - The key of override parameter.
- Parameter
Value string - The value of override parameter.
- Parameter
Key string - The key of override parameter.
- Parameter
Value string - The value of override parameter.
- parameter
Key String - The key of override parameter.
- parameter
Value String - The value of override parameter.
- parameter
Key string - The key of override parameter.
- parameter
Value string - The value of override parameter.
- parameter_
key str - The key of override parameter.
- parameter_
value str - The value of override parameter.
- parameter
Key String - The key of override parameter.
- parameter
Value String - The value of override parameter.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.
