openstack.orchestration.StackV1
Explore with Pulumi AI
Manages a V1 stack resource within OpenStack.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const stack1 = new openstack.orchestration.StackV1("stack_1", {
name: "stack_1",
parameters: {
length: 4,
},
templateOpts: {
Bin: `heat_template_version: 2013-05-23
parameters:
length:
type: number
resources:
test_res:
type: OS::Heat::TestResource
random:
type: OS::Heat::RandomString
properties:
length: {get_param: length}
`,
},
environmentOpts: {
Bin: "\n",
},
disableRollback: true,
timeout: 30,
});
import pulumi
import pulumi_openstack as openstack
stack1 = openstack.orchestration.StackV1("stack_1",
name="stack_1",
parameters={
"length": 4,
},
template_opts={
"Bin": """heat_template_version: 2013-05-23
parameters:
length:
type: number
resources:
test_res:
type: OS::Heat::TestResource
random:
type: OS::Heat::RandomString
properties:
length: {get_param: length}
""",
},
environment_opts={
"Bin": "\n",
},
disable_rollback=True,
timeout=30)
package main
import (
"github.com/pulumi/pulumi-openstack/sdk/v4/go/openstack/orchestration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := orchestration.NewStackV1(ctx, "stack_1", &orchestration.StackV1Args{
Name: pulumi.String("stack_1"),
Parameters: pulumi.Map{
"length": pulumi.Any(4),
},
TemplateOpts: pulumi.Map{
"Bin": pulumi.Any(`heat_template_version: 2013-05-23
parameters:
length:
type: number
resources:
test_res:
type: OS::Heat::TestResource
random:
type: OS::Heat::RandomString
properties:
length: {get_param: length}
`),
},
EnvironmentOpts: pulumi.Map{
"Bin": pulumi.Any("\n"),
},
DisableRollback: pulumi.Bool(true),
Timeout: pulumi.Int(30),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using OpenStack = Pulumi.OpenStack;
return await Deployment.RunAsync(() =>
{
var stack1 = new OpenStack.Orchestration.StackV1("stack_1", new()
{
Name = "stack_1",
Parameters =
{
{ "length", 4 },
},
TemplateOpts =
{
{ "Bin", @"heat_template_version: 2013-05-23
parameters:
length:
type: number
resources:
test_res:
type: OS::Heat::TestResource
random:
type: OS::Heat::RandomString
properties:
length: {get_param: length}
" },
},
EnvironmentOpts =
{
{ "Bin", @"
" },
},
DisableRollback = true,
Timeout = 30,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.openstack.orchestration.StackV1;
import com.pulumi.openstack.orchestration.StackV1Args;
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 stack1 = new StackV1("stack1", StackV1Args.builder()
.name("stack_1")
.parameters(Map.of("length", 4))
.templateOpts(Map.of("Bin", """
heat_template_version: 2013-05-23
parameters:
length:
type: number
resources:
test_res:
type: OS::Heat::TestResource
random:
type: OS::Heat::RandomString
properties:
length: {get_param: length}
"""))
.environmentOpts(Map.of("Bin", """
"""))
.disableRollback(true)
.timeout(30)
.build());
}
}
resources:
stack1:
type: openstack:orchestration:StackV1
name: stack_1
properties:
name: stack_1
parameters:
length: 4
templateOpts:
Bin: |
heat_template_version: 2013-05-23
parameters:
length:
type: number
resources:
test_res:
type: OS::Heat::TestResource
random:
type: OS::Heat::RandomString
properties:
length: {get_param: length}
environmentOpts:
Bin: |2+
disableRollback: true
timeout: 30
Create StackV1 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StackV1(name: string, args: StackV1Args, opts?: CustomResourceOptions);
@overload
def StackV1(resource_name: str,
args: StackV1Args,
opts: Optional[ResourceOptions] = None)
@overload
def StackV1(resource_name: str,
opts: Optional[ResourceOptions] = None,
template_opts: Optional[Mapping[str, Any]] = None,
parameters: Optional[Mapping[str, Any]] = None,
notification_topics: Optional[Sequence[str]] = None,
description: Optional[str] = None,
disable_rollback: Optional[bool] = None,
region: Optional[str] = None,
name: Optional[str] = None,
creation_time: Optional[str] = None,
stack_outputs: Optional[Sequence[StackV1StackOutputArgs]] = None,
environment_opts: Optional[Mapping[str, Any]] = None,
status: Optional[str] = None,
status_reason: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
template_description: Optional[str] = None,
capabilities: Optional[Sequence[str]] = None,
timeout: Optional[int] = None,
updated_time: Optional[str] = None)
func NewStackV1(ctx *Context, name string, args StackV1Args, opts ...ResourceOption) (*StackV1, error)
public StackV1(string name, StackV1Args args, CustomResourceOptions? opts = null)
public StackV1(String name, StackV1Args args)
public StackV1(String name, StackV1Args args, CustomResourceOptions options)
type: openstack:orchestration:StackV1
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 StackV1Args
- 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 StackV1Args
- 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 StackV1Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StackV1Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StackV1Args
- 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 stackV1Resource = new OpenStack.Orchestration.StackV1("stackV1Resource", new()
{
TemplateOpts =
{
{ "string", "any" },
},
Parameters =
{
{ "string", "any" },
},
NotificationTopics = new[]
{
"string",
},
Description = "string",
DisableRollback = false,
Region = "string",
Name = "string",
CreationTime = "string",
StackOutputs = new[]
{
new OpenStack.Orchestration.Inputs.StackV1StackOutputArgs
{
OutputKey = "string",
OutputValue = "string",
Description = "string",
},
},
EnvironmentOpts =
{
{ "string", "any" },
},
Status = "string",
StatusReason = "string",
Tags = new[]
{
"string",
},
TemplateDescription = "string",
Capabilities = new[]
{
"string",
},
Timeout = 0,
UpdatedTime = "string",
});
example, err := orchestration.NewStackV1(ctx, "stackV1Resource", &orchestration.StackV1Args{
TemplateOpts: pulumi.Map{
"string": pulumi.Any("any"),
},
Parameters: pulumi.Map{
"string": pulumi.Any("any"),
},
NotificationTopics: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DisableRollback: pulumi.Bool(false),
Region: pulumi.String("string"),
Name: pulumi.String("string"),
CreationTime: pulumi.String("string"),
StackOutputs: orchestration.StackV1StackOutputArray{
orchestration.StackV1StackOutputArgs{
OutputKey: pulumi.String("string"),
OutputValue: pulumi.String("string"),
Description: pulumi.String("string"),
},
},
EnvironmentOpts: pulumi.Map{
"string": pulumi.Any("any"),
},
Status: pulumi.String("string"),
StatusReason: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TemplateDescription: pulumi.String("string"),
Capabilities: pulumi.StringArray{
pulumi.String("string"),
},
Timeout: pulumi.Int(0),
UpdatedTime: pulumi.String("string"),
})
var stackV1Resource = new StackV1("stackV1Resource", StackV1Args.builder()
.templateOpts(Map.of("string", "any"))
.parameters(Map.of("string", "any"))
.notificationTopics("string")
.description("string")
.disableRollback(false)
.region("string")
.name("string")
.creationTime("string")
.StackOutputs(StackV1StackOutputArgs.builder()
.outputKey("string")
.outputValue("string")
.description("string")
.build())
.environmentOpts(Map.of("string", "any"))
.status("string")
.statusReason("string")
.tags("string")
.templateDescription("string")
.capabilities("string")
.timeout(0)
.updatedTime("string")
.build());
stack_v1_resource = openstack.orchestration.StackV1("stackV1Resource",
template_opts={
"string": "any",
},
parameters={
"string": "any",
},
notification_topics=["string"],
description="string",
disable_rollback=False,
region="string",
name="string",
creation_time="string",
stack_outputs=[openstack.orchestration.StackV1StackOutputArgs(
output_key="string",
output_value="string",
description="string",
)],
environment_opts={
"string": "any",
},
status="string",
status_reason="string",
tags=["string"],
template_description="string",
capabilities=["string"],
timeout=0,
updated_time="string")
const stackV1Resource = new openstack.orchestration.StackV1("stackV1Resource", {
templateOpts: {
string: "any",
},
parameters: {
string: "any",
},
notificationTopics: ["string"],
description: "string",
disableRollback: false,
region: "string",
name: "string",
creationTime: "string",
StackOutputs: [{
outputKey: "string",
outputValue: "string",
description: "string",
}],
environmentOpts: {
string: "any",
},
status: "string",
statusReason: "string",
tags: ["string"],
templateDescription: "string",
capabilities: ["string"],
timeout: 0,
updatedTime: "string",
});
type: openstack:orchestration:StackV1
properties:
StackOutputs:
- description: string
outputKey: string
outputValue: string
capabilities:
- string
creationTime: string
description: string
disableRollback: false
environmentOpts:
string: any
name: string
notificationTopics:
- string
parameters:
string: any
region: string
status: string
statusReason: string
tags:
- string
templateDescription: string
templateOpts:
string: any
timeout: 0
updatedTime: string
StackV1 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The StackV1 resource accepts the following input properties:
- Template
Opts Dictionary<string, object> - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Capabilities List<string>
- List of stack capabilities for stack.
- Creation
Time string - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Description string
- The description of the stack resource.
- Disable
Rollback bool - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- Environment
Opts Dictionary<string, object> - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- Name string
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- Notification
Topics List<string> - List of notification topics for stack.
- Parameters Dictionary<string, object>
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- Region string
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - Stack
Outputs List<Pulumi.Open Stack. Orchestration. Inputs. Stack V1Stack Output> - A list of stack outputs.
- Status string
- The status of the stack.
- Status
Reason string - The reason for the current status of the stack.
- List<string>
- A list of tags to assosciate with the Stack
- Template
Description string - The description of the stack template.
- Timeout int
- The timeout for stack action in minutes.
- Updated
Time string - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Template
Opts map[string]interface{} - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Capabilities []string
- List of stack capabilities for stack.
- Creation
Time string - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Description string
- The description of the stack resource.
- Disable
Rollback bool - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- Environment
Opts map[string]interface{} - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- Name string
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- Notification
Topics []string - List of notification topics for stack.
- Parameters map[string]interface{}
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- Region string
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - Stack
Outputs []StackV1Stack Output Args - A list of stack outputs.
- Status string
- The status of the stack.
- Status
Reason string - The reason for the current status of the stack.
- []string
- A list of tags to assosciate with the Stack
- Template
Description string - The description of the stack template.
- Timeout int
- The timeout for stack action in minutes.
- Updated
Time string - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- template
Opts Map<String,Object> - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Stack
Outputs List<StackV1Stack Output> - A list of stack outputs.
- capabilities List<String>
- List of stack capabilities for stack.
- creation
Time String - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description String
- The description of the stack resource.
- disable
Rollback Boolean - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment
Opts Map<String,Object> - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name String
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification
Topics List<String> - List of notification topics for stack.
- parameters Map<String,Object>
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region String
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - status String
- The status of the stack.
- status
Reason String - The reason for the current status of the stack.
- List<String>
- A list of tags to assosciate with the Stack
- template
Description String - The description of the stack template.
- timeout Integer
- The timeout for stack action in minutes.
- updated
Time String - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- template
Opts {[key: string]: any} - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Stack
Outputs StackV1Stack Output[] - A list of stack outputs.
- capabilities string[]
- List of stack capabilities for stack.
- creation
Time string - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description string
- The description of the stack resource.
- disable
Rollback boolean - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment
Opts {[key: string]: any} - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name string
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification
Topics string[] - List of notification topics for stack.
- parameters {[key: string]: any}
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region string
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - status string
- The status of the stack.
- status
Reason string - The reason for the current status of the stack.
- string[]
- A list of tags to assosciate with the Stack
- template
Description string - The description of the stack template.
- timeout number
- The timeout for stack action in minutes.
- updated
Time string - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- template_
opts Mapping[str, Any] - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- capabilities Sequence[str]
- List of stack capabilities for stack.
- creation_
time str - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description str
- The description of the stack resource.
- disable_
rollback bool - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment_
opts Mapping[str, Any] - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name str
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification_
topics Sequence[str] - List of notification topics for stack.
- parameters Mapping[str, Any]
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region str
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - stack_
outputs Sequence[StackV1Stack Output Args] - A list of stack outputs.
- status str
- The status of the stack.
- status_
reason str - The reason for the current status of the stack.
- Sequence[str]
- A list of tags to assosciate with the Stack
- template_
description str - The description of the stack template.
- timeout int
- The timeout for stack action in minutes.
- updated_
time str - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- template
Opts Map<Any> - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Stack
Outputs List<Property Map> - A list of stack outputs.
- capabilities List<String>
- List of stack capabilities for stack.
- creation
Time String - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description String
- The description of the stack resource.
- disable
Rollback Boolean - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment
Opts Map<Any> - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name String
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification
Topics List<String> - List of notification topics for stack.
- parameters Map<Any>
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region String
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - status String
- The status of the stack.
- status
Reason String - The reason for the current status of the stack.
- List<String>
- A list of tags to assosciate with the Stack
- template
Description String - The description of the stack template.
- timeout Number
- The timeout for stack action in minutes.
- updated
Time String - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
Outputs
All input properties are implicitly available as output properties. Additionally, the StackV1 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing StackV1 Resource
Get an existing StackV1 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?: StackV1State, opts?: CustomResourceOptions): StackV1
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
stack_outputs: Optional[Sequence[StackV1StackOutputArgs]] = None,
capabilities: Optional[Sequence[str]] = None,
creation_time: Optional[str] = None,
description: Optional[str] = None,
disable_rollback: Optional[bool] = None,
environment_opts: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None,
notification_topics: Optional[Sequence[str]] = None,
parameters: Optional[Mapping[str, Any]] = None,
region: Optional[str] = None,
status: Optional[str] = None,
status_reason: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
template_description: Optional[str] = None,
template_opts: Optional[Mapping[str, Any]] = None,
timeout: Optional[int] = None,
updated_time: Optional[str] = None) -> StackV1
func GetStackV1(ctx *Context, name string, id IDInput, state *StackV1State, opts ...ResourceOption) (*StackV1, error)
public static StackV1 Get(string name, Input<string> id, StackV1State? state, CustomResourceOptions? opts = null)
public static StackV1 get(String name, Output<String> id, StackV1State state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Capabilities List<string>
- List of stack capabilities for stack.
- Creation
Time string - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Description string
- The description of the stack resource.
- Disable
Rollback bool - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- Environment
Opts Dictionary<string, object> - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- Name string
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- Notification
Topics List<string> - List of notification topics for stack.
- Parameters Dictionary<string, object>
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- Region string
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - Stack
Outputs List<Pulumi.Open Stack. Orchestration. Inputs. Stack V1Stack Output> - A list of stack outputs.
- Status string
- The status of the stack.
- Status
Reason string - The reason for the current status of the stack.
- List<string>
- A list of tags to assosciate with the Stack
- Template
Description string - The description of the stack template.
- Template
Opts Dictionary<string, object> - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Timeout int
- The timeout for stack action in minutes.
- Updated
Time string - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Capabilities []string
- List of stack capabilities for stack.
- Creation
Time string - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Description string
- The description of the stack resource.
- Disable
Rollback bool - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- Environment
Opts map[string]interface{} - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- Name string
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- Notification
Topics []string - List of notification topics for stack.
- Parameters map[string]interface{}
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- Region string
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - Stack
Outputs []StackV1Stack Output Args - A list of stack outputs.
- Status string
- The status of the stack.
- Status
Reason string - The reason for the current status of the stack.
- []string
- A list of tags to assosciate with the Stack
- Template
Description string - The description of the stack template.
- Template
Opts map[string]interface{} - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- Timeout int
- The timeout for stack action in minutes.
- Updated
Time string - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Stack
Outputs List<StackV1Stack Output> - A list of stack outputs.
- capabilities List<String>
- List of stack capabilities for stack.
- creation
Time String - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description String
- The description of the stack resource.
- disable
Rollback Boolean - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment
Opts Map<String,Object> - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name String
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification
Topics List<String> - List of notification topics for stack.
- parameters Map<String,Object>
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region String
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - status String
- The status of the stack.
- status
Reason String - The reason for the current status of the stack.
- List<String>
- A list of tags to assosciate with the Stack
- template
Description String - The description of the stack template.
- template
Opts Map<String,Object> - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- timeout Integer
- The timeout for stack action in minutes.
- updated
Time String - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Stack
Outputs StackV1Stack Output[] - A list of stack outputs.
- capabilities string[]
- List of stack capabilities for stack.
- creation
Time string - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description string
- The description of the stack resource.
- disable
Rollback boolean - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment
Opts {[key: string]: any} - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name string
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification
Topics string[] - List of notification topics for stack.
- parameters {[key: string]: any}
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region string
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - status string
- The status of the stack.
- status
Reason string - The reason for the current status of the stack.
- string[]
- A list of tags to assosciate with the Stack
- template
Description string - The description of the stack template.
- template
Opts {[key: string]: any} - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- timeout number
- The timeout for stack action in minutes.
- updated
Time string - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- capabilities Sequence[str]
- List of stack capabilities for stack.
- creation_
time str - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description str
- The description of the stack resource.
- disable_
rollback bool - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment_
opts Mapping[str, Any] - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name str
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification_
topics Sequence[str] - List of notification topics for stack.
- parameters Mapping[str, Any]
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region str
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - stack_
outputs Sequence[StackV1Stack Output Args] - A list of stack outputs.
- status str
- The status of the stack.
- status_
reason str - The reason for the current status of the stack.
- Sequence[str]
- A list of tags to assosciate with the Stack
- template_
description str - The description of the stack template.
- template_
opts Mapping[str, Any] - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- timeout int
- The timeout for stack action in minutes.
- updated_
time str - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- Stack
Outputs List<Property Map> - A list of stack outputs.
- capabilities List<String>
- List of stack capabilities for stack.
- creation
Time String - The date and time when the resource was created. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
- description String
- The description of the stack resource.
- disable
Rollback Boolean - Enables or disables deletion of all stack resources when a stack creation fails. Default is true, meaning all resources are not deleted when stack creation fails.
- environment
Opts Map<Any> - Environment key/value pairs to associate with the stack which contains details for the environment of the stack. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Environment Opts.
- name String
- A unique name for the stack. It must start with an alphabetic character. Changing this updates the stack's name.
- notification
Topics List<String> - List of notification topics for stack.
- parameters Map<Any>
- User-defined key/value pairs as parameters to pass to the template. Changing this updates the existing stack parameters.
- region String
- The region in which to create the stack. If
omitted, the
region
argument of the provider is used. Changing this creates a new stack. - status String
- The status of the stack.
- status
Reason String - The reason for the current status of the stack.
- List<String>
- A list of tags to assosciate with the Stack
- template
Description String - The description of the stack template.
- template
Opts Map<Any> - Template key/value pairs to associate with the stack which contains either the template file or url. Allowed keys: Bin, URL, Files. Changing this updates the existing stack Template Opts.
- timeout Number
- The timeout for stack action in minutes.
- updated
Time String - The date and time when the resource was updated. The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm For example, 2015-08-27T09:49:58-05:00. The ±hh:mm value, if included, is the time zone as an offset from UTC.
Supporting Types
StackV1StackOutput, StackV1StackOutputArgs
- Output
Key string - Output
Value string - Description string
- The description of the stack resource.
- Output
Key string - Output
Value string - Description string
- The description of the stack resource.
- output
Key String - output
Value String - description String
- The description of the stack resource.
- output
Key string - output
Value string - description string
- The description of the stack resource.
- output_
key str - output_
value str - description str
- The description of the stack resource.
- output
Key String - output
Value String - description String
- The description of the stack resource.
Import
stacks can be imported using the id
, e.g.
$ pulumi import openstack:orchestration/stackV1:StackV1 stack_1 ea257959-eeb1-4c10-8d33-26f0409a755d
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- OpenStack pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
openstack
Terraform Provider.