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
36 lines
860 B
YAML
36 lines
860 B
YAML
heat_template_version: wallaby
|
|
|
|
parameters:
|
|
# Can be overridden via parameter_defaults in the environment
|
|
node_admin_username:
|
|
type: string
|
|
default: heat-admin
|
|
|
|
node_admin_extra_ssh_keys:
|
|
type: comma_delimited_list
|
|
default: []
|
|
|
|
description: >
|
|
Uses cloud-init to create an additional user with a known name, in addition
|
|
to the distro-default user created by the cloud-init default.
|
|
|
|
resources:
|
|
userdata:
|
|
type: OS::Heat::MultipartMime
|
|
properties:
|
|
parts:
|
|
- config: {get_resource: user_config}
|
|
|
|
# Note this requires cloud-init >= 0.7.2 ref bug #1100920
|
|
user_config:
|
|
type: OS::Heat::CloudConfig
|
|
properties:
|
|
cloud_config:
|
|
user: {get_param: node_admin_username}
|
|
ssh_authorized_keys: {get_param: node_admin_extra_ssh_keys}
|
|
|
|
|
|
outputs:
|
|
OS::stack_id:
|
|
value: {get_resource: userdata}
|