aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml
blob: 806280afd4987b023964f497582c783c600172ab (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
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
    #depends_on:
     # - test_nested_no_compute
     # - test_nested_pattern_4
    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
      #- test_nested_no_compute
    properties:
      #p1: {get_attr: [test_nested_pattern_4, all_pattern_attr_1]}
      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]}
      #p2: {get_attr: [test_nested_no_compute, all_pattern_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