Stack Profile

The stack profile instantiates nodes that are associated with heat stack instances.

Properties

disable_rollback
A boolean specifying whether a stack operation can be rolled back.
template_url
Heat stack template url.
timeout
A integer that specifies the number of minutes that a stack operation times out.
context
A dictionary for specifying the customized context for stack operations
environment
A map that specifies the environment used for stack operations.
files
Contents of files referenced by the template, if any.
parameters
Parameters to be passed to Heat for stack operations.
template
Heat stack template.

Sample

Below is a typical spec for a stack profile:

type: os.heat.stack
version: 1.0
properties:
  name: nova_server_stack
  template: nova_server_template.yaml
  parameters:
    server_name: my_cirros_server
  context:
    region_name: RegionOne