Created
September 16, 2014 04:51
-
-
Save yuuichi-fujioka/4d21a4c090f4d39cedbf to your computer and use it in GitHub Desktop.
simple heat template with json
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", | |
"parameters": {}, | |
"resources": { | |
"server1":{ | |
"type": "OS::Nova::Server", | |
"properties": { | |
"name": "Server1", | |
"image": "cirros-0.3.2-x86_64-uec", | |
"flavor": "m1.tiny", | |
"networks":[ | |
{"network":"private"} | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment