summaryrefslogtreecommitdiffstats
path: root/tosca2heat/heat-translator/translator/tests/data/hot_output/nfv/SP1_res.yaml
blob: ca47df2cf083ca0a19809fc9e97dd2269020b4ee (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
heat_template_version: 2013-05-23
description: Tacker Scaling template
resources:
  VDU1:
    type: OS::Nova::Server
    properties:
      user_data_format: SOFTWARE_CONFIG
      software_config_transport: POLL_SERVER_HEAT
      availability_zone: nova
      image: cirros-0.3.4-x86_64-uec
      flavor: m1.tiny
      networks:
      - port: { get_resource: CP1 }
      config_drive: false
  CP1:
    type: OS::Neutron::Port
    properties:
      anti_spoofing_protection: false
      management: true
      network: net_mgmt
  CP2:
    type: OS::Neutron::Port
    properties:
      anti_spoofing_protection: false
      management: true
      network: net_mgmt
  VDU2:
    type: OS::Nova::Server
    properties:
      user_data_format: SOFTWARE_CONFIG
      software_config_transport: POLL_SERVER_HEAT
      availability_zone: nova
      image: cirros-0.3.4-x86_64-uec
      flavor: m1.tiny
      networks:
      - port: { get_resource: CP2 }
      config_drive: false
  VL1:
    type: OS::Neutron::Net