container_registry_password should be secret

The [guest_agent] container_registry_password option takes a credential
to access a container registry, thus its value should be hidden from
debug logs.

Story: 2010594
Task: 47456
Change-Id: I8f595fff616606a96e70d1712a3a2e65c85b3476
This commit is contained in:
Takashi Kajinami 2023-02-20 14:08:41 +09:00
parent 7a62e826a4
commit 8f7d01216a
1 changed files with 2 additions and 1 deletions

View File

@ -1536,7 +1536,8 @@ guest_agent_opts = [
),
cfg.StrOpt(
'container_registry_password',
help='The plaintext registry password.'
help='The plaintext registry password.',
secret=True,
),
]