summaryrefslogtreecommitdiffstats
path: root/validation-scripts/ice_validator/tests/fixtures/test_volume_resource_ids/fail/mismatch_vm_type_volume_id_volume_attachment_2.yaml
blob: 673a8db927523550f546e667aaaec6b1c94248e2 (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
67
68
69
70
heat_template_version: 2015-04-30

description: Heat template using json string for volumes

parameters:

  vnf_id:
    type: string
    description: Unique ID for this VNF instance

  vf_module_id:
    type: string
    description: Unique ID for this VF module

  vnf_name:
    type: string
    description: Unique name for this VNF instance

  admin_names:
    type: comma_delimited_list
    description: Names attribute for the VMs

  availability_zone_0:
    type: string
    description: availability zone to be used

  admin_flavor_name:
    type: string
    description: flavor to be used to create this vm must be one of the following flavors

  admin_volume_ids:
    type: json
    description: Unique IDs for volumes


resources:

  admin_server_0:
    type: OS::Nova::Server
    properties:
      availability_zone: { get_param: availability_zone_0 }
      name: { get_param: [admin_names, 0]  }
      flavor: { get_param: admin_flavor_name}
      metadata:
        vnf_name: { get_param: vnf_name }
        vnf_id: { get_param: vnf_id }
        vf_module_id: { get_param: vf_module_id }

  admin_server_1:
    type: OS::Nova::Server
    properties:
      availability_zone: { get_param: availability_zone_0 }
      name: { get_param: [admin_names, 1]  }
      flavor: { get_param: admin_flavor_name}
      metadata:
        vnf_name: { get_param: vnf_name }
        vnf_id: { get_param: vnf_id }
        vf_module_id: { get_param: vf_module_id }

  admin_volume_attachment_0:
    type: OS::Cinder::VolumeAttachment
    properties:
      volume_id: {get_param: [admin_volume_ids, 0]}
      instance_uuid: {get_resource: admin_server_0}

  admin_volume_attachment_1:
    type: OS::Cinder::VolumeAttachment
    properties:
      volume_id: {get_param: [admin2_volume_ids, 1]}
      instance_uuid: {get_resource: admin_server_1}