Update tosca lib to version 0.5
[parser.git] / tosca2heat / heat-translator / translator / tests / data / hot_output / hot_artifact.yaml
1 heat_template_version: 2013-05-23
2
3 description: >
4   TOSCA template to test artifact usage
5
6 parameters: {}
7 resources:
8   customwebserver_create_deploy:
9     type: OS::Heat::SoftwareDeployment
10     properties:
11       config:
12         get_resource: customwebserver_create_config
13       input_values:
14         content:
15           get_file: http://www.mycompany.org/content.tgz
16       server:
17         get_resource: server
18   server:
19     type: OS::Nova::Server
20     properties:
21       flavor: m1.small
22       image: ubuntu-12.04-software-config-os-init
23       user_data_format: SOFTWARE_CONFIG
24   customwebserver_create_config:
25     type: OS::Heat::SoftwareConfig
26     properties:
27       config:
28         get_file: install.sh
29       group: script
30 outputs: {}