heat-templates/hot/server_console.yaml
Steve Baker a2ef5ce0e9 Fix description indent
This is causing gate-heat-templates-dsvm to fail.

gate-heat-templates-dsvm can be made voting once this lands

Change-Id: If83345378a09bb5da4f3c31b509be53cf9bcc251
2014-12-04 11:13:27 +13:00

28 lines
639 B
YAML

heat_template_version: 2013-05-23
description: |
The heat template is used to demo the 'console_urls' attribute
of OS::Nova::Server.
parameters:
image:
type: string
flavor:
type: string
default: m1.small
resources:
server:
type: OS::Nova::Server
properties:
image: { get_param: image }
flavor: { get_param: flavor }
outputs:
single_console_type:
value: { get_attr: server, console_urls, novnc }
description: console URL for the server (novnc in this case)
all_console_urls:
value: { get_attr: [server, console_urls] }
description: all available console URLs for the server