Change flat network name for nosdn fdio scenario
[apex-tripleo-heat-templates.git] / default_passwords.yaml
1 heat_template_version: pike
2
3 description: Passwords we manage at the top level
4
5 parameters:
6   DefaultMysqlRootPassword:
7     type: string
8   DefaultRabbitCookie:
9     type: string
10   DefaultHeatAuthEncryptionKey:
11     type: string
12   DefaultPcsdPassword:
13     type: string
14   DefaultHorizonSecret:
15     type: string
16
17 outputs:
18   passwords:
19     description: Password data
20     value:
21       mysql_root_password: {get_param: DefaultMysqlRootPassword}
22       rabbit_cookie: {get_param: DefaultRabbitCookie}
23       heat_auth_encryption_key: {get_param: DefaultHeatAuthEncryptionKey}
24       pcsd_password: {get_param: DefaultPcsdPassword}
25       horizon_secret: {get_param: DefaultHorizonSecret}