Merge "Adds sample template for Keystone domain"

This commit is contained in:
Jenkins 2016-12-28 08:03:51 +00:00 committed by Gerrit Code Review
commit 51f4dd37e8
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
heat_template_version: 2017-02-24
description: Sample Keystone Domain template
parameters:
domain_name:
type: string
description: Keystone domain name
domain_description:
type: string
description: Keystone domain description
default: sample domain
domain_enabled:
type: boolean
description: Keystone domain is enabled or disabled
default: True
resources:
domain:
type: OS::Keystone::Domain
properties:
name: {get_param: domain_name}
description: {get_param: domain_description}
enabled: {get_param: domain_enabled}
outputs:
domain_id:
value: {get_resource: domain}