Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created September 16, 2014 04:51
Show Gist options
  • Save yuuichi-fujioka/4d21a4c090f4d39cedbf to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/4d21a4c090f4d39cedbf to your computer and use it in GitHub Desktop.
simple heat template with json
{
"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