aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/multiLevel/twoNestedLevelsWithAllPatternsAndConnectivities/in/nested-pattern-4.yml
blob: 6266dff927f47c0f78c3f3aa9508b341cb8a0146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
heat_template_version: 2013-05-23

description: nested1

parameters:
  p1:
    type: string
    description: UID of OAM network
  p2:
    type: string
    description: UID of OAM network
  security_group_name:
    type: comma_delimited_list
    description: CMAUI1, CMAUI2 server names
  pd_server_names:
    type: comma_delimited_list
    description: PD server names
  availability_zone_0:
    type: string
    label: availabilityzone name
    description: availabilityzone name
  pd_server_flavor:
    type: string
    description: Flavor for PD server
  pd_server_image:
    type: string
    description: Flavor for PD server
  ps_server_flavor:
    type: string
    description: Flavor for PS server
  pd_server_ips:
      type: string
  net:
    type: string
resources:

  pd_server_1_port:
    type: OS::Neutron::Port
    properties:
      network: { get_param: net }
      fixed_ips: [{"ip_address": {get_param: [pd_server_ips, 0]}}]
      replacement_policy: AUTO

  pd_server_2_port:
    type: OS::Neutron::Port
    properties:
      network: { get_param: net }
      fixed_ips: [{"ip_address": {get_param: [pd_server_ips, 1]}}]
      replacement_policy: AUTO

  server_pd:
    type: OS::Nova::Server
    properties:
      name: { get_param: [pd_server_names, 0]}
      image: { get_param: pd_server_image }
      availability_zone: { get_param: availability_zone_0 }
      flavor: { get_param: pd_server_flavor }
      networks:
      - port: { get_resource: pd_server_1_port }
      - port: { get_resource: pd_server_2_port }

outputs:
  pattern4_attr_1:
    description: pattern4_attr_1_value
    value: { get_resource: server_pd }