Adds sample template for Keystone domain

implements: blueprint heat-keystone-domain-resource

Change-Id: I79b493c071a9a6512448f2d0520574815caf0065
depends-on: I50cf45efa3573031b767b05b5feb447871b603f0
This commit is contained in:
Kanagaraj Manickam 2016-11-04 11:38:27 +05:30
parent f123aa1491
commit 2beada6eba
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}