aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/depends_on_points_to_existing_resource/input/hot-nimbus-pps_v1.0.yaml
blob: 35a0efb28d4a02dbccd04b4ccc6cf070106fb19c (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
heat_template_version: 2013-05-23

description: heat template that creates PCRF Policy Server stack

parameters:
  pcrf_pps_server_names:
    type: comma_delimited_list
    label: PCRF PS server names
    description: PCRF PS server names
  pcrf_pps_image_name:
    type: string
    label: PCRF PS image name
    description: PCRF PS image name

resources:
  resource_depends_on_legal_1:
    type: OS::Heat::CloudConfig
    depends_on: [resource_1, resource_2]

  resource_depends_on_legal_2:
    type: OS::Heat::CloudConfig
    depends_on: resource_1

  resource_depends_on_illegal_1:
    type: OS::Heat::CloudConfig
    depends_on: resource_not_exist

  resource_depends_on_illegal_2:
    type: OS::Heat::CloudConfig
    depends_on: [resource_1, resource_3]

  resource_depends_on_illegal_3:
    type: OS::Heat::CloudConfig
    depends_on:

  resource_1:
    type: OS::Heat::CloudConfig

  resource_2:
    type: OS::Heat::CloudConfig