summaryrefslogtreecommitdiffstats
path: root/sdnvpn/artifacts/testcase_8bis_upd.yaml
blob: 4661e8a18e867cacb4d2f5741670e8a88ef709b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
heat_template_version: 2013-05-23

resources:
  fip_1:
    type: OS::Neutron::FloatingIP
    properties:
      floating_network: { get_param: external_nw }
  fip_1_assoc:
    type: OS::Neutron::FloatingIPAssociation
    properties:
      floatingip_id: { get_resource: fip_1 }
      port_id: {get_attr: [vm1, addresses, {get_resource: net_1}, 0, port]}

outputs:
  fip_1_o:
    description: the floating IP for vm1
    value: { get_attr: [fip_1, show, floating_ip_address] }