aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/scalingInstances/oneComputeTypeOnePortOutputParamGetAttrIn/in/hot-mog-0108-bs1271.yml
blob: 1180cb6e8e664698b2c0c35713d3cc11fced3b9b (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
heat_template_version: 2013-05-23

description: heat template that creates MOG stack

parameters:
  pd_server_names:
    type: comma_delimited_list
    label: PD server names
    description: name of the PD instance
  pd_image_name:
    type: string
    label: image name
    description: PD image name
  pd_flavor_name:
    type: string
    label: PD flavor name
    description: flavor name of PD instance
  availabilityzone_name:
    type: string
    label: availabilityzone name
    description: availabilityzone name


resources:
  server_pd_01:
    type: OS::Nova::Server
    properties:
      name: {get_param: [pd_server_names, 0]}
      image: {get_param: pd_image_name}
      flavor: {get_param: pd_flavor_name}
      availability_zone: {get_param: availabilityzone_name}
      networks:
        - port: {get_resource: pd01_port_0}
      user_data_format:  RAW_SERVER_PD_1
  server_pd_02:
    type: OS::Nova::Server
    properties:
      name: {get_param: [pd_server_names, 1]}
      image: {get_param: pd_image_name}
      flavor: {get_param: pd_flavor_name}
      availability_zone: {get_param: availabilityzone_name}
      networks:
        - port: {get_resource: pd01_port_1}
      user_data_format:  RAW_SERVER_PD_2
  pd01_port_0:
    type: OS::Neutron::Port
    properties:
      network: Network-0
      replacement_policy: AUTO_PORT_0
  pd01_port_1:
    type: OS::Neutron::Port
    properties:
      network: Network-1
      replacement_policy: AUTO_PORT_1
outputs:
  output_attr_server_pd_1:
      description: output attr pd1
      value: {get_attr: [server_pd_01, accessIPv4]}
  output_attr_server_pd_2:
      description: output attr pd2
      value: {get_attr: [server_pd_02, accessIPv6]}
  output_attr_port_pd_0:
      description: output attr port0
      value:
        get_attr: [pd01_port_0, device_id]