blob: 75105df2453564db61e4720f639756051cb26658 [file] [log] [blame]
Andy Baviera6cffe12017-03-15 17:33:42 -04001tosca_definitions_version: tosca_simple_yaml_1_0
2
3description: Persist xos-sample-gui-extension
4
5imports:
6 - custom_types/xos.yaml
7
8topology_template:
9 node_templates:
10
11 # UI Extension
12{% for ext in enabled_gui_extensions %}
13 {{ext.name}}:
14 type: tosca.nodes.XOSGuiExtension
15 properties:
Max Chu0068b832017-07-28 11:03:40 -070016 files: /xos/extensions/{{ext.name}}/vendor.js, /xos/extensions/{{ext.name}}/app.js
Andy Baviera6cffe12017-03-15 17:33:42 -040017{% endfor %}