aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/nested/nestedvolumeseperatefile/inputs/nested-pcm_v0.1.yaml
blob: b8ab56319af14923c87208084997b3cad7e9cf27 (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
heat_template_version: 2013-05-23

description: heat template that creates PCRF Cluman stack

parameters:
  pcm_server_name:
    type: string
    label: PCRF CM server name
    description: PCRF CM server name

  nove_001_vol_property:
    type: string
    label: volume
    description: volume name

  nova_image_name:
      type: string
      label: volume
      description: nova image name

resources:
  nova_001:
    type: OS::Nova::Server
    properties:
      not_null: not_null
      image: {get_param: nova_image_name}
  nove_001_vol_attach:
    type: OS::Cinder::VolumeAttachment
    properties:
      volume_id: {get_param: nove_001_vol_property}
      instance_uuid: {get_resource: nova_001}