1a80f43830
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
23 lines
482 B
YAML
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}
|