blob: d3d546dd8f55f7d98e16a5ec6fbce7077953c30c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
heat_template_version: ocata
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}
|