Merge "Add DefaultPasswords to composable services"
[apex-tripleo-heat-templates.git] / default_passwords.yaml
1 heat_template_version: 2016-10-14
2
3 description: Passwords we manage at the top level
4
5 parameters:
6   DefaultMysqlRootPassword:
7     type: string
8   DefaultMysqlClusterPassword:
9     type: string
10   DefaultRabbitCookie:
11     type: string
12   DefaultHeatAuthEncryptionKey:
13     type: string
14   DefaultPcsdPassword:
15     type: string
16   DefaultHorizonSecret:
17     type: string
18
19 outputs:
20   passwords:
21     description: Password data
22     value:
23       mysql_root_password: {get_param: DefaultMysqlRootPassword}
24       mysql_cluster_password: {get_param: DefaultMysqlClusterPassword}
25       rabbit_cookie: {get_param: DefaultRabbitCookie}
26       heat_auth_encryption_key: {get_param: DefaultHeatAuthEncryptionKey}
27       pcsd_password: {get_param: DefaultPcsdPassword}
28       horizon_secret: {get_param: DefaultHorizonSecret}