c9991c2e31
With I57047682cfa82ba6ca4affff54fab5216e9ba51c Heat has added a new template version for wallaby. This would allow us to use 2-argument variant of the ``if`` function that would allow for e.g. conditional definition of resource properties and help cleanup templates. If only two arguments are passed to ``if`` function, the entire enclosing item is removed when the condition is false. Change-Id: I25f981b60c6a66b39919adc38c02a051b6c51269
19 lines
403 B
YAML
19 lines
403 B
YAML
heat_template_version: wallaby
|
|
description: 'Extra Pre-Deployment Config, multiple'
|
|
parameters:
|
|
server:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
CinderNetappConfig:
|
|
type: cinder-netapp.yaml
|
|
properties:
|
|
server: {get_param: server}
|
|
|
|
# Note depends_on may be used for serialization if ordering is important
|
|
OtherConfig:
|
|
type: other.yaml
|
|
properties:
|
|
server: {get_param: server}
|