b0b2e021d2b89e8f1205d8376753981d08b198f9
[parser.git] /
1 heat_template_version: 2013-05-23
2
3 description: >
4   TOSCA simple profile that just defines a single compute instance and selects a
5   flavor and host Operating System for the Compute node. Note, this is just a test
6   template showing Compute without optional 'version' property of OS capability.
7   In general, you should have version to narrow down your image selection.
8
9 parameters: {}
10 resources:
11   my_server:
12     type: OS::Nova::Server
13     properties:
14       flavor: m1.medium
15       image: rhel-6.5-test-image
16       user_data_format: SOFTWARE_CONFIG
17       software_config_transport: POLL_SERVER_HEAT
18 outputs: {}