2a2fe91602
This change corrects many problems detected by the `yamllint` linter. It's a preparation for enabling this linter in change Ie746230f28fe3ed0cf218201d5a3810f7bc44070. For instance, the first run of the YAML linter helped discovering a key duplication problem in `oso_ha.yaml`: the `depends_on` key was present twice, so the first occurence was ignored. Other changes are cosmetic: extra spaces, extra blank lines, missing newlines at end-of-file, etc. Change-Id: I7f2369adfb152fd2a74b9b105e969e653e592922
30 lines
750 B
YAML
30 lines
750 B
YAML
heat_template_version: 2013-05-23
|
|
|
|
description: Sample Keystone Project template
|
|
|
|
parameters:
|
|
project_name:
|
|
type: string
|
|
description: Keystone project name
|
|
project_description:
|
|
type: string
|
|
description: Keystone project description
|
|
project_enabled:
|
|
type: boolean
|
|
description: Keystone project is enabled or disabled
|
|
project_domain:
|
|
type: string
|
|
description: Keystone project domain name
|
|
|
|
resources:
|
|
admin_project:
|
|
type: OS::Keystone::Project
|
|
properties:
|
|
name: {get_param: project_name}
|
|
domain: {get_param: project_domain}
|
|
description: {get_param: project_description}
|
|
enabled: {get_param: project_enabled}
|
|
outputs:
|
|
admin_project_id:
|
|
value: {get_resource: admin_project}
|