[coordination] backend_url should be secret

The backend_url option can sometimes contain secrets.

For example when redis coordination backend is used and authentication
is enabled in redis, the plain redis password is put as an URL element.

[coordination]
backend_url=redis://:password@127.0.0.1:6379

Change-Id: I30e796a81fe0bb58023b98ffd10f7db269518ac5
This commit is contained in:
Takashi Kajinami 2023-03-20 18:27:16 +09:00
parent 5cfaf80278
commit ad67ad3906
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ from oslo_config import cfg
OPTS = [
cfg.StrOpt('backend_url',
secret=True,
help='The backend URL to use for the coordination service. If '
'left empty, membership api will not work')
]