0649c1199bc5ae2244c6fcdf7ba0981395e1bf67
[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/compute_with_prop.yaml
7
8 topology_template:
9
10   node_templates:
11
12     server:
13       type: tosca.nodes.ComputeWithProp
14       properties:
15          test: yes
16       capabilities:
17         host:
18          properties:
19            num_cpus: 1
20            mem_size: 1 GB
21         os:
22           properties:
23             type: linux
24
25   outputs:
26     server_ip:
27      value: { get_attribute: [ server, public_address ] }
28