927495fe3d
The new master branch should point now to queens instead of pike. So, HOT templates should specify that they might contain features for queens release [1] [1]: https://docs.openstack.org/heat/latest/template_guide/hot_spec.html#queens Change-Id: I7654d1c59db0c4508a9d7045f452612d22493004
26 lines
677 B
YAML
26 lines
677 B
YAML
heat_template_version: queens
|
|
|
|
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}
|