Make auth_encryption_key a secret

auth_encryption_key is used to encrypt autentication info in the
database, it must be a secret.

Change-Id: Ib15db2632d087b91ca4923a64fa9923daa6b2c85
This commit is contained in:
Spyros Trigazis 2018-06-14 12:52:08 +02:00
parent 3c86186f29
commit 24cbbd517a
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class heat::engine (
}
heat_config {
'DEFAULT/auth_encryption_key': value => $auth_encryption_key;
'DEFAULT/auth_encryption_key': value => $auth_encryption_key, secret => true;
'DEFAULT/heat_stack_user_role': value => $heat_stack_user_role;
'DEFAULT/heat_metadata_server_url': value => $heat_metadata_server_url;
'DEFAULT/heat_waitcondition_server_url': value => $heat_waitcondition_server_url;