17 lines
		
	
	
		
			410 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			410 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| heat_template_version: 2013-05-23
 | |
| 
 | |
| description: Simple template to deploy a single compute instance
 | |
| 
 | |
| parameters:
 | |
|   key_name:
 | |
|     type: string
 | |
|     label: Key Name
 | |
|     description: Name of key-pair to be used for compute instance
 | |
| 
 | |
| resources:
 | |
|   my_instance:
 | |
|     type: OS::Nova::Server
 | |
|     properties:
 | |
|       key_name: { get_param: key_name }
 | |
|       image: 227f4be7-be1c-498d-ab88-54f8b5df249f
 | |
|       flavor: m1.small | 
