[VVP] Removing unnecessary trademark lines
[vvp/validation-scripts.git] / ice_validator / tests / fixtures / test_all_referenced_resources_exists / fail / mismatch_get_resource.yaml
1 # -*- coding: utf8 -*-
2 # ============LICENSE_START=======================================================
3 # org.onap.vvp/validation-scripts
4 # ===================================================================
5 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 # ===================================================================
7 #
8 # Unless otherwise specified, all software contained herein is licensed
9 # under the Apache License, Version 2.0 (the "License");
10 # you may not use this software except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #             http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 #
21 #
22 #
23 # Unless otherwise specified, all documentation contained herein is licensed
24 # under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25 # you may not use this documentation except in compliance with the License.
26 # You may obtain a copy of the License at
27 #
28 #             https://creativecommons.org/licenses/by/4.0/
29 #
30 # Unless required by applicable law or agreed to in writing, documentation
31 # distributed under the License is distributed on an "AS IS" BASIS,
32 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 # See the License for the specific language governing permissions and
34 # limitations under the License.
35 #
36 # ============LICENSE_END============================================
37 #
38 #
39 ---
40 heat_template_version: 2015-04-30
41
42 description: Heat template description
43
44 parameters:
45
46   vnf_id:
47     type: string
48     description: Unique ID for this VNF instance
49
50   vf_module_id:
51     type: string
52     description: Unique ID for this VF module
53
54   vnf_name:
55     type: string
56     description: Unique name for this VNF instance
57
58   admin_names:
59     type: comma_delimited_list
60     description: Names attribute for the VMs
61
62   db_names:
63     type: comma_delimited_list
64     description: Names attribute for the VMs
65
66   lb_names:
67     type: comma_delimited_list
68     description: Names attribute for the VMs
69
70   availability_zone_0:
71     type: string
72     description: availability zone to be used
73
74   admin_flavor_name:
75     type: string
76     description: flavor to be used to create this vm must be one of the following flavors
77
78   db_flavor_name:
79     type: string
80     description: flavor to be used to create this vm must be one of the following flavors
81
82   lb_flavor_name:
83     type: string
84     description: flavor to be used to create this vm must be one of the following flavors
85
86   db_0_extnet_0_port:
87     type: string
88     description: id of the admin_1_extnet_1_port
89
90   db_1_int_intranet_0_port:
91     type: string
92     description: id of the admin_1_extnet_1_port
93
94   exnet_net_name:
95     type: string
96     description: network name for the external network extnet
97
98   exnet_net_id:
99     type: string
100     description: network id for the external network extnet
101
102   int_vpnnet_net_id:
103     type: string
104     description: network id for the internal network vpnnet 
105
106 resources:
107
108   admin_server_0:
109     type: OS::Nova::Server
110     properties:
111       availability_zone: { get_param: availability_zone_0 }
112       name: { get_param: [admin_names, 0]  }
113       flavor: { get_param: admin_flavor_name}
114       networks:
115         - port: { get_resource: admin_0_exnet_0_port }
116         - port: { get_resource: admin_0_int_vpnnet_0_port }
117       metadata:
118         vnf_name: { get_param: vnf_name }
119         vnf_id: { get_param: vnf_id }
120         vf_module_id: { get_param: vf_module_id }
121
122   admin_server_1:
123     type: OS::Nova::Server
124     properties:
125       availability_zone: { get_param: availability_zone_0 }
126       name: { get_param: [admin_names, 1]  }
127       flavor: { get_param: admin_flavor_name}
128       networks:
129         - port: { get_resource: admin_1_extnet_0_port }
130         - port: { get_resource: admin_1_extnet_10_port }
131       metadata:
132         vnf_name: { get_param: vnf_name }
133         vnf_id: { get_param: vnf_id }
134         vf_module_id: { get_param: vf_module_id }
135
136   db_server_0:
137     type: OS::Nova::Server
138     properties:
139       availability_zone: { get_param: availability_zone_0 }
140       name: { get_param: [db_names, 0] }
141       flavor: { get_param: db_flavor_name}
142       networks:
143         - port: { get_param: db_0_extnet_0_port }
144       metadata:
145         vnf_name: { get_param: vnf_name }
146         vnf_id: { get_param: vnf_id }
147         vf_module_id: { get_param: vf_module_id }
148
149   db_server_1:
150     type: OS::Nova::Server
151     properties:
152       availability_zone: { get_param: availability_zone_0 }
153       name: { get_param: [db_names, 1] }
154       flavor: { get_param: db_flavor_name}
155       networks:
156         - port: { get_param: db_1_int_intranet_0_port }
157       metadata:
158         vnf_name: { get_param: vnf_name }
159         vnf_id: { get_param: vnf_id }
160         vf_module_id: { get_param: vf_module_id }
161
162   lb_server_0:
163     type: OS::Nova::Server
164     properties:
165       availability_zone: { get_param: availability_zone_0 }
166       name: { get_param: [lb_names, 0]  }
167       flavor: { get_param: lb_flavor_name}
168       metadata:
169         vnf_name: { get_param: vnf_name }
170         vnf_id: { get_param: vnf_id }
171         vf_module_id: { get_param: vf_module_id }
172
173   admin_0_exnet_0_port:
174       type: OS::Neutron::Port
175       properties:
176         network: { get_param: exnet_net_name }
177
178   admin_0_int_vpnnet_0_port:
179       type: OS::Neutron::Port
180       properties:
181           network: { get_param: int_vpnnet_net_id }
182
183   admin_1_extnet_0_port:
184       type: OS::Neutron::Port
185       properties:
186         network: { get_param: extnet_net_name }
187
188   admin_1_extnet_1_port:
189       type: OS::Neutron::Port
190       properties:
191         network: { get_param: extnet_net_id }