vitrage-tempest-plugin/vitrage_tempest_plugin/tests/resources/heat/heat_template.yaml
Eyal 1e881b6b88 update cirros image
Change-Id: Ic9e29cb2253a2a0a123e4385d7f07dcf99ccf04e
2018-12-16 12:05:47 +02:00

25 lines
454 B
YAML

heat_template_version: 2013-05-23
description: |
The heat template is used to demo
parameters:
image:
type: string
default: cirros-0.3.6-x86_64-disk
network:
type: string
default: public
flavor:
type: string
default: m1.nano
resources:
server_2:
type: OS::Nova::Server
properties:
image: { get_param: image }
flavor: { get_param: flavor }
networks:
- network: { get_param: network }