aboutsummaryrefslogtreecommitdiffstats
path: root/default_passwords.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-20 16:29:02 +0000
committerGerrit Code Review <review@openstack.org>2016-08-20 16:29:02 +0000
commit6c537d2005b8cb5b25f63722376fca08471987ac (patch)
tree0a45528088c74cd984ba2359738c52a30ecc7ffa /default_passwords.yaml
parent9b2281f8de84e730910342d40b12e37886203087 (diff)
parent3b62761d2fc25abef4ca98e9d5863197c4497b85 (diff)
Merge "Add DefaultPasswords to composable services"
Diffstat (limited to 'default_passwords.yaml')
-rw-r--r--default_passwords.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/default_passwords.yaml b/default_passwords.yaml
new file mode 100644
index 00000000..a7d9c978
--- /dev/null
+++ b/default_passwords.yaml
@@ -0,0 +1,28 @@
+heat_template_version: 2016-10-14
+
+description: Passwords we manage at the top level
+
+parameters:
+ DefaultMysqlRootPassword:
+ type: string
+ DefaultMysqlClusterPassword:
+ 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}
+ mysql_cluster_password: {get_param: DefaultMysqlClusterPassword}
+ rabbit_cookie: {get_param: DefaultRabbitCookie}
+ heat_auth_encryption_key: {get_param: DefaultHeatAuthEncryptionKey}
+ pcsd_password: {get_param: DefaultPcsdPassword}
+ horizon_secret: {get_param: DefaultHorizonSecret}