0fd3d769b379eef559cce5dea9e847c28873f59e
[sdc.git] /
1 tosca_definitions_version: tosca_simple_yaml_1_0_0
2 metadata:
3   template_name: Main
4 imports:
5 - openecomp_heat_index:
6     file: openecomp-heat/_index.yml
7 - GlobalSubstitutionTypes:
8     file: GlobalSubstitutionTypesServiceTemplate.yaml
9 topology_template:
10   inputs:
11     untrusted_vlan_networks:
12       hidden: false
13       immutable: false
14       annotations:
15         source:
16           type: org.openecomp.annotations.Source
17           properties:
18             vf_module_label:
19             - main
20             source_type: HEAT
21             param_name: untrusted_vlan_networks
22       type: list
23       entry_schema:
24         type: string
25     jsa_net_name:
26       hidden: false
27       immutable: false
28       annotations:
29         source:
30           type: org.openecomp.annotations.Source
31           properties:
32             vf_module_label:
33             - main
34             source_type: HEAT
35             param_name: jsa_net_name
36       type: string
37       description: network name of jsa log network
38   node_templates:
39     test_net1:
40       type: org.openecomp.resource.vl.nodes.heat.network.neutron.Net
41       properties:
42         shared: true
43         network_name:
44           get_input: jsa_net_name
45     test_net:
46       type: org.openecomp.resource.vl.nodes.heat.network.neutron.Net
47       properties:
48         shared: true
49         network_name:
50           get_input: jsa_net_name
51     test_nested:
52       type: org.openecomp.resource.abstract.nodes.heat.nested
53       directives:
54       - substitutable
55       properties:
56         p1:
57           get_input: untrusted_vlan_networks
58         service_template_filter:
59           substitute_service_template: nestedServiceTemplate.yaml
60         p2: test_net1
61   groups:
62     main_group:
63       type: org.openecomp.groups.heat.HeatStack
64       properties:
65         heat_file: ../Artifacts/main.yml
66         description: |
67           Version 2.0 02-09-2016 (Authors: John Doe, user PROD)
68       members:
69       - test_net1
70       - test_net
71       - test_nested