Synchronise the openstack bugs
[parser.git] / tosca2heat / heat-translator / translator / tests / data / hot_output / hot_single_server_without_tosca_os_version.yaml
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 outputs: {}