Expose role tags via heat RoleTags output

This will enable easier consumption of the tags e.g via
the dynamic ansible inventory or workflows that run ansible

Change-Id: I8810240d012ff369991e5e6098e36aa3713e2615
This commit is contained in:
Steven Hardy 2017-10-31 11:32:15 +00:00
parent ea2952d502
commit 87735ac4bc
1 changed files with 6 additions and 0 deletions

View File

@ -960,6 +960,12 @@ outputs:
{% for role in roles %}
{{role.name}}: {get_attr: [{{role.name}}NetworkHostnameMap, value]}
{% endfor %}
RoleTags:
description: Tags for each role, as defined in roles_data.yaml
value:
{%- for role in roles %}
{{role.name}}: {{role.tags|default([])}}
{%- endfor %}
ServerOsCollectConfigData:
description: The os-collect-config configuration associated with each server resource
value: {get_attr: [ServerOsCollectConfigData, value]}