8549da09b2626ca1b6408a5538bb58d8501bb86c
[sdc.git] /
1 tosca_definitions_version: tosca_simple_yaml_1_2
2
3 description: service template of an Acme PNF
4
5 imports:
6   - etsi_nfv_sol001_pnfd_2_5_1_types.yaml
7
8 topology_template:
9   inputs:
10     protocols:
11       type: list
12       description: IP protocols
13       entry_schema:
14         type: string
15       default: [ ipv4, ipv6 ]
16   node_templates:
17     myPnf:
18       type: tosca.nodes.nfv.PNF
19       properties:
20         descriptor_id: b1bb0ce7-ebca-4fa7-95ed-4840d70a2233
21         function_description: Acme PNF
22         provider: Acme
23         version: 1.0
24         descriptor_invariant_id: 1111-2222-ccaa-bbdd
25         name: Acme PNF
26
27     pnfExtCp_1:
28       type: tosca.nodes.nfv.PnfExtCp
29       properties:
30         trunk_mode: false
31         layer_protocols: { get_input: protocols }
32         role: leaf
33         description: External connection point to access Acme myPnf
34       requirements:
35         - dependency: myPnf
36
37     pnfExtCp_2:
38       type: tosca.nodes.nfv.PnfExtCp
39       properties:
40         trunk_mode: false
41         layer_protocols: { get_input: protocols }
42         role: leaf
43         description: External connection point to access Acme myPnf
44       requirements:
45         - dependency: myPnf