[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / contrailv2VMinterface / macAddressesValueMapTwoItems / inputfiles / vmme_vlc.yml
1 heat_template_version: 2015-04-30
2
3 description: >
4   Module HOT template to create vmme 2 vlc
5
6 parameters:
7   vlc1_Internal1_mac:
8     type: string
9     description: static mac address assigned to vlc1_Internal1
10   vlc1_Internal2_mac:
11     type: string
12     description: static mac address assigned to vlc1_Internal2
13   vlc_st_interface_type_int1:
14     type: string  
15     description: service_interface_type for the ServiceTemplate
16   vlc_st_interface_type_int2:
17     type: string
18     description: service_interface_type for the ServiceTemplate
19   internal_net_id_0:
20     type: string
21     description: UUID of Internal1_net
22   internal_net_id_1:
23     type: string
24     description: UUID of Internal2_net
25   security_group_int1_id:
26     type: string
27     description: Security Group UUID for output
28   security_group_int2_id:
29     type: string
30     description: Security Group UUID for output
31
32 resources:
33
34   template_VMInt_INT1_VLC_1:
35     type: OS::ContrailV2::VirtualMachineInterface
36     properties:
37       virtual_machine_interface_properties:
38         {
39           virtual_machine_interface_properties_service_interface_type: { get_param: vlc_st_interface_type_int1 }
40         }
41       virtual_network_refs: [{ get_param: internal_net_id_0}]
42       virtual_machine_interface_mac_addresses:
43         {
44           virtual_machine_interface_mac_addresses_mac_address: [{ get_param: vlc1_Internal1_mac }, { get_param: vlc1_Internal2_mac }, "abc"]
45         }
46       security_group_refs: [{get_param: security_group_int1_id}]
47