aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/multiLevel/twoNestedLevelsWithAllPatternsAndConnectivities/in/main.yml
blob: 8ed202635672e54e18f13fa918b923c9471a3d50 (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
heat_template_version: 2013-05-23

description: >
  Version 2.0 02-09-2016 (Authors: John Doe, user PROD)

parameters:
  jsa_name:
    type: string
    description: network name of jsa log network

resources:
  test_nested_all_patterns:
    type: nested1.yml
    properties:
      p1: {get_attr: [test_nested_pattern_4, pattern4_attr_1]}
      p2: {get_attr: [test_nested_no_compute, no_compute_attr_1]}

  test_nested_pattern_4:
    type: nested-pattern-4.yml
    depends_on:
      - test_nested_all_patterns
    properties:
      p2: {get_attr: [test_nested_no_compute, no_compute_attr_1]}

  test_nested_no_compute:
    type: nested-no-compute.yml
    depends_on:
      - test_nested_all_patterns
      - test_nested_pattern_4
    properties:
      p1: {get_attr: [test_nested_pattern_4, pattern4_attr_1]}

  dependsOn_network:
    type: OS::Neutron::Net
    depends_on:
      - test_nested_all_patterns
      - test_nested_no_compute
      - test_nested_pattern_4
    properties:
      name:
        get_param: jsa_name