aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/buildconsolidationdata/dependsonresource/noDependency/inputfiles/input.yaml
blob: 04e2c582723811e326c2ea40d995c1e178d20a59 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
heat_template_version: '2014-10-16'

parameters:
  base_image_name:
    description: The base ID or name of the image to boot with
    type: string
  cdr_network:
    description: A string specifying a symbolic name for the network
    type: string
  domain_name:
    description: The servers domain
    type: string
  manager_name_0:
    description: VM Name for Manager VM 0
    type: string
  manager_oam_direct_ip_0:
    description: The public ip address of the manager
    type: string
  oam_private_net_name:
    description: A string specifying a symbolic name for the network
    type: string
  packet_internal_network_name:
    description: A string specifying a symbolic name for the network
    type: string
  packet_internal_network_subnet_alloc_end:
    description: End address for the allocation pool
    type: string
  packet_internal_network_subnet_alloc_start:
    description: Start address for the allocation pool
    type: string
  packet_internal_network_subnet_cidr:
    description: The Classless Inter-Domain Routing
    type: string
  packet_internal_network_subnet_name:
    description: The name of the subnet
    type: string
  packet_mirror_network_name:
    description: A string specifying a symbolic name for the network
    type: string
  packet_mirror_network_subnet_alloc_end:
    description: End address for the allocation pool
    type: string
  packet_mirror_network_subnet_alloc_start:
    description: Start address for the allocation pool
    type: string
  packet_mirror_network_subnet_cidr:
    description: The Classless Inter-Domain Routing
    type: string
  packet_mirror_network_subnet_name:
    description: The name of the subnet
    type: string
  availability_zone_0:
    description: Name of the availability zone for server placement
    type: string
  region_name:
    description: Name of region to be used
    type: string
  rpmrepository_ip_0:
    description: The public ip address of the repository
    type: string
  tenant_name:
    description: Name of tenant to be used
    type: string
  availability_zone_1:
    description: Name of the availability zone for server placement
    type: string
resources:
  packet_internal_network:
    properties:
      name:
        get_param: packet_internal_network_name
    type: OS::Neutron::Net
  packet_mirror_network:
    properties:
      name:
        get_param: packet_mirror_network_name
    type: OS::Neutron::Net
  QRouter:
    properties:
      availability_zone: Availability-test
      config_drive: true
      flavor: FLAVOR-test
      image: Image-test
      name: QRouter-name
      networks:
      - port:
          get_resource: oam_private_net_network_port
      - port:
          get_resource: cdr_network_port
    type: OS::Nova::Server
  cdr_network_port:
    properties:
      network:
        get_param: cdr_network
    type: OS::Neutron::Port
  oam_private_net_network_port:
    properties:
      network:
        get_param: oam_private_net_name
    type: OS::Neutron::Port