[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 / buildconsolidationdata / dependsonresource / nodesConnectedInOut / inputfiles / input.yaml
1 heat_template_version: '2014-10-16'
2
3 parameters:
4   base_image_name:
5     description: The base ID or name of the image to boot with
6     type: string
7   cdr_network:
8     description: A string specifying a symbolic name for the network
9     type: string
10   domain_name:
11     description: The servers domain
12     type: string
13   manager_name_0:
14     description: VM Name for Manager VM 0
15     type: string
16   manager_oam_direct_ip_0:
17     description: The public ip address of the manager
18     type: string
19   oam_private_net_name:
20     description: A string specifying a symbolic name for the network
21     type: string
22   packet_internal_network_name:
23     description: A string specifying a symbolic name for the network
24     type: string
25   packet_internal_network_subnet_alloc_end:
26     description: End address for the allocation pool
27     type: string
28   packet_internal_network_subnet_alloc_start:
29     description: Start address for the allocation pool
30     type: string
31   packet_internal_network_subnet_cidr:
32     description: The Classless Inter-Domain Routing
33     type: string
34   packet_internal_network_subnet_name:
35     description: The name of the subnet
36     type: string
37   packet_mirror_network_name:
38     description: A string specifying a symbolic name for the network
39     type: string
40   packet_mirror_network_subnet_alloc_end:
41     description: End address for the allocation pool
42     type: string
43   packet_mirror_network_subnet_alloc_start:
44     description: Start address for the allocation pool
45     type: string
46   packet_mirror_network_subnet_cidr:
47     description: The Classless Inter-Domain Routing
48     type: string
49   packet_mirror_network_subnet_name:
50     description: The name of the subnet
51     type: string
52   availability_zone_0:
53     description: Name of the availability zone for server placement
54     type: string
55   region_name:
56     description: Name of region to be used
57     type: string
58   rpmrepository_ip_0:
59     description: The public ip address of the repository
60     type: string
61   tenant_name:
62     description: Name of tenant to be used
63     type: string
64   availability_zone_1:
65     description: Name of the availability zone for server placement
66     type: string
67 resources:
68   packet_internal_network:
69     properties:
70       name:
71         get_param: packet_internal_network_name
72     type: OS::Neutron::Net
73   QRouter:
74     depends_on:
75     - packet_internal_network
76     properties:
77       availability_zone: Availability-test
78       config_drive: true
79       flavor: FLAVOR-test
80       image: Image-test
81       name: QRouter-name
82       networks:
83       - port:
84           get_resource: oam_private_net_network_port
85       - port:
86           get_resource: cdr_network_port
87     type: OS::Nova::Server
88   packet_mirror_network:
89     depends_on:
90     - QRouter
91     properties:
92       name:
93         get_param: packet_mirror_network_name
94     type: OS::Neutron::Net
95   cdr_network_port:
96     properties:
97       network:
98         get_param: cdr_network
99     type: OS::Neutron::Port
100   oam_private_net_network_port:
101     properties:
102       network:
103         get_param: oam_private_net_name
104     type: OS::Neutron::Port
105