blob: 04828d9445d78b3bf327e3b4f7c71f3c527d0aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
heat_template_version: pike
description: Passwords we manage at the top level
parameters:
DefaultMysqlRootPassword:
type: string
DefaultRabbitCookie:
type: string
DefaultHeatAuthEncryptionKey:
type: string
DefaultPcsdPassword:
type: string
DefaultHorizonSecret:
type: string
outputs:
passwords:
description: Password data
value:
mysql_root_password: {get_param: DefaultMysqlRootPassword}
rabbit_cookie: {get_param: DefaultRabbitCookie}
heat_auth_encryption_key: {get_param: DefaultHeatAuthEncryptionKey}
pcsd_password: {get_param: DefaultPcsdPassword}
horizon_secret: {get_param: DefaultHorizonSecret}
|