Merge "Use OS_CLOUD environment variable"

This commit is contained in:
Zuul 2021-06-11 07:06:41 +00:00 committed by Gerrit Code Review
commit 0d7c3f4952
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ opts = [
cfg.StrOpt('ansible_python_interpreter', default=None), cfg.StrOpt('ansible_python_interpreter', default=None),
cfg.BoolOpt('debug', help='Print tracebacks for exceptions'), cfg.BoolOpt('debug', help='Print tracebacks for exceptions'),
cfg.StrOpt('serial', default=1), cfg.StrOpt('serial', default=1),
cfg.StrOpt('os-cloud', default=None, help=('Provide authentication ' cfg.StrOpt('os-cloud', default=os.environ.get('OS_CLOUD'),
'with clouds.yaml file.')), help=('Provide authentication with clouds.yaml file.')),
] ]