f0bec844b1ed68e25f07c1866ce22fd7a49f7d03
[sdc/sdc-distribution-client.git] /
1 tosca_definitions_version: tosca_simple_yaml_1_0
2
3 description: TOSCA simple profile to test the attribute inheritance
4
5 imports:
6   - ../custom_types/node_with_cap.yaml
7
8 topology_template:
9
10   node_templates:
11
12     some_node:
13       type: tosca.nodes.SomeNode
14       requirements:
15         - some_req: node_cap
16       interfaces:
17         Standard:
18           configure:
19             implementation: some_script.sh
20             inputs:
21               some_input: { get_property: [ SELF, some_req, type ] }
22
23     node_cap:
24       type: tosca.nodes.NodeWithCap
25