tripleo-heat-templates/examples/launchconfig1_hot.yaml

25 lines
519 B
YAML

heat_template_version: 2014-10-16
parameters:
A:
type: string
default: test1
B:
type: string
default: test2
resource1Image:
type: string
default: resource1
resources:
notcomputeConfigBase:
type: AWS::AutoScaling::LaunchConfiguration
metadata:
OpenStack::Role: notcomputeConfig
a: {get_param: A}
b: {get_param: B}
resource1:
type: OS::Nova::Server
properties:
flavor: test_flavor
image: {get_param: resource1Image}
key_name: test_key