Newer
Older
{
"heat_template_version": "2016-04-08",
"parameters":{
"server_name":{
}
},
"resources":{
"floating_ip":{
"type": "OS::Nova::FloatingIP",
"properties": {
"pool": "private-muni-10-16-116"
}
},
"association":{
"type":"OS::Nova::FloatingIPAssociation",
"properties":{
"floatingip_id": { "get_resource": "floating_ip" },
}
}
},
"outputs":{
"association":{
"value": { "get_resource": "association" }
},
"floating_ip":{
"value": { "get_resource": "floating_ip" }
}
}