heat via GUI
Hi all,
I have my template for heat, I can run it via cli with no issues, my questions is how I run the same template in the gui.
this is my .yml file
heat_template_version: 2014-10-16
description: A simple server.
resources:
server:
type: OS::Nova::Server
properties:
block_device_mapping:
- device_name: vda
delete_on_termination: true
volume_id: { get_resource: volume }
flavor: m1.small
networks:
- network: private
volume:
type: OS::Cinder::Volume
properties:
image: cirros-0.3.4-x86_64-uec
size: 1
Thanks.