vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / examples / clearwater / clearwater-live-test-existing.yaml
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 tosca_definitions_version: tosca_simple_yaml_1_0
17
18 description: >-
19   Project Clearwater is an open-source IMS core, developed by Metaswitch Networks and released under
20   the GNU GPLv3.
21
22 metadata:
23   template_name: clearwater-live-test-existing
24   template_author: ARIA
25   template_version: '1.0'
26   aria_version: '0.2.0'
27
28 imports:
29   - types/clearwater.yaml
30   - aria-1.0
31
32 topology_template:
33
34   inputs:
35     hosts.ssh.user:
36       type: string
37     hosts.ssh.password:
38       type: string
39     existing_host.public_address:
40       type: string
41
42   node_templates:
43     live_test:
44       type: clearwater.LiveTest
45
46     existing_host:
47       type: clearwater.HostBase
48       attributes:
49         public_address: { get_input: existing_host.public_address }
50       capabilities:
51         host:
52           properties:
53             ssh.user: { get_input: hosts.ssh.user }
54             ssh.password: { get_input: hosts.ssh.password }