3c6ec654b4
Heat now supports release name aliases, so we can replace the inconsistent mix of date related versions with one consistent version that aligns with the supported version of heat for this t-h-t branch. This should also help new users who sometimes copy/paste old templates and discover intrinsic functions in the t-h-t docs don't work because their template version is too old. Change-Id: Ib415e7290fea27447460baa280291492df197e54
26 lines
676 B
YAML
26 lines
676 B
YAML
heat_template_version: ocata
|
|
|
|
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}
|