aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/novatovolumeconnection/innernestedconnection/inputfiles/a_vol.yml
blob: df5be208488f355ee98bec7c3f69439eb67afa50 (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
heat_template_version: 2013-05-23

description: volume

parameters:
  cmaui_cinder_volume_size:
     type: number
     label: CMAUI Cinder volume size
     description: the size of the CMAUI Cinder volume
  CMAUI_volume_type:
    type: string
    label: CMAUI vm volume type
    description: the name of the target volume backend

resources:
  inner_cmaui_volume_a1:
     type: OS::Cinder::Volume
     properties:
       size: {get_param: cmaui_cinder_volume_size}
       volume_type: {get_param: CMAUI_volume_type}

  cmaui_volume2:
     type: OS::Cinder::Volume
     properties:
       size: {get_param: cmaui_cinder_volume_size}
       volume_type: {get_param: CMAUI_volume_type}

outputs:
    inner_cmaui_volume_a1:
      value: {get_resource: inner_cmaui_volume_a1}
    inner_cmaui_volume_a2:
          value: {get_resource: cmaui_volume2}