923305c6a42d353449821f39ee0729c6ae314968
[parser.git] /
1 tosca_definitions_version: tosca_simple_yaml_1_0
2
3 description: >
4   Tosca template for testing unknown node template name in get_attribute
5   function.
6
7 topology_template:
8   inputs:
9     image_id:
10       type: string
11
12   node_templates:
13     server:
14       type: tosca.nodes.Compute
15       capabilities:
16         host:
17           properties:
18             num_cpus: 2
19       interfaces:
20         Standard:
21           configure:
22             implementation: start_server.sh
23             inputs:
24               image_id: { get_input: image_id }
25
26   outputs:
27     ip_address:
28       value: { get_attribute: [ unknown_node_template, private_address ] }