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