Created
January 19, 2015 21:56
-
-
Save dizz/7d54604820cc975e59f9 to your computer and use it in GitHub Desktop.
1 node, port and FIP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
heat_template_version: 2013-05-23 | |
description: Simple template to deploy a single compute instance | |
parameters: | |
private_mgmt_net: | |
type: string | |
description: > | |
ID of private network mgmt | |
default: 2faa7292-59f4-4cf6-aa28-e3cdcc2634d7 | |
public_net: | |
type: string | |
description: > | |
ID of public network | |
default: 1b31bc6b-8aff-4e13-912a-d9c9a427475a | |
resources: | |
my_instance: | |
type: OS::Nova::Server | |
properties: | |
key_name: edmo-bart | |
image: ubuntu-server-14.04 | |
flavor: m1.small | |
networks: | |
- port: { get_resource: my_port } | |
my_port: | |
type: OS::Neutron::Port | |
properties: | |
network_id: {get_param: private_mgmt_net} | |
my_floating_ip: | |
type: OS::Neutron::FloatingIP | |
properties: | |
floating_network_id: { get_param: public_net} | |
port_id: { get_resource: my_port } | |
outputs: | |
instance_ip: | |
description: IP address of the deployed compute instance | |
value: { get_attr: [my_instance, first_address] } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment