Using heat orchestrator for sdnvpn - test case 8
[sdnvpn.git] / sdnvpn / artifacts / testcase_8bis_upd.yaml
1 heat_template_version: 2013-05-23
2
3 resources:
4   fip_1:
5     type: OS::Neutron::FloatingIP
6     properties:
7       floating_network: { get_param: external_nw }
8   fip_1_assoc:
9     type: OS::Neutron::FloatingIPAssociation
10     properties:
11       floatingip_id: { get_resource: fip_1 }
12       port_id: {get_attr: [vm1, addresses, {get_resource: net_1}, 0, port]}
13
14 outputs:
15   fip_1_o:
16     description: the floating IP for vm1
17     value: { get_attr: [fip_1, show, floating_ip_address] }