Adds sample template for Keystone domain
implements: blueprint heat-keystone-domain-resource Change-Id: I79b493c071a9a6512448f2d0520574815caf0065 depends-on: I50cf45efa3573031b767b05b5feb447871b603f0
This commit is contained in:
parent
f123aa1491
commit
2beada6eba
28
hot/keystone/keystone_domain.yaml
Normal file
28
hot/keystone/keystone_domain.yaml
Normal 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}
|
Loading…
Reference in New Issue
Block a user