Files
heat-templates/hot/keystone/keystone_service.yaml
T
Kanagaraj Manickam 1a80f43830 Keystone templates folder name is updated
In liberty, keystone resource plugins are made as available
as part of heat main-tree from contrib. And got renamed from
heat_keystone to keystone.

Change-Id: If248081b5e0dccec57bcd3a3f23d8f157bcb7f29
2015-07-09 08:23:55 +05:30

23 lines
482 B
YAML

heat_template_version: 2013-05-23
description: Sample Keystone Service template
parameters:
name:
type: string
description: Keystone service name
description:
type: string
description: Keystone service description
type:
type: string
description: Keystone service type
resources:
sample_service:
type: OS::Keystone::Service
properties:
name: {get_param: name}
type: {get_param: type}
description: {get_param: description}