tripleo-heat-templates/default_passwords.yaml
Carlos Camacho 0a0e2ee629 Update the template_version alias for all the templates to pike.
Master is now the development branch for pike
changing the release alias name.

Change-Id: I938e4a983e361aefcaa0bd9a4226c296c5823127
2017-05-19 09:58:07 +02:00

26 lines
675 B
YAML

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}