Bump template version for all templates to "ocata"
[apex-tripleo-heat-templates.git] / firstboot / userdata_default.yaml
1 heat_template_version: ocata
2
3 description: >
4   This is a default no-op template which provides empty user-data
5   which can be passed to the OS::Nova::Server resources.
6   This template can be replaced with a different implementation via
7   the resource registry, such that deployers may customize their
8   first-boot configuration.
9
10 resources:
11   userdata:
12     type: OS::Heat::MultipartMime
13
14 outputs:
15   # This means get_resource from the parent template will get the userdata, see:
16   # http://docs.openstack.org/developer/heat/template_guide/composition.html#making-your-template-resource-more-transparent
17   # Note this is new-for-kilo, an alternative is returning a value then using
18   # get_attr in the parent template instead.
19   OS::stack_id:
20     value: {get_resource: userdata}