Add a note to use 16, 24, or 32 chars for CONFIG_HEAT_AUTH_ENC_KEY

The note helps to avoid the bug https://bugs.launchpad.net/heat/+bug/1415887.

Change-Id: Iabdfed72256b50a236a6ed27d36ff03fbe32c140
(cherry picked from commit 2113f4263b)
This commit is contained in:
Christian Berendt
2015-01-30 16:26:12 +01:00
committed by Lukas Bezdicka
parent 25ced1296f
commit e6d9521585

View File

@@ -41,9 +41,9 @@ def initConfig(controller):
{"CMD_OPTION": "heat-auth-encryption-key",
"USAGE": ("The encryption key to use for authentication info "
"in database"),
"in database (16, 24, or 32 chars)"),
"PROMPT": ("Enter the authentication key for Heat to use for "
"authenticate info in database"),
"authenticate info in database (16, 24, or 32 chars)"),
"OPTION_LIST": [],
"VALIDATORS": [validators.validate_not_empty],
"DEFAULT_VALUE": uuid.uuid4().hex[:16],