Skip to content

Commit

Permalink
update use application credential boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Aug 30, 2023
1 parent 1d1dd78 commit 68f5919
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simple_vm_client/openstack_connector/openstack_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ def load_env_config(self) -> None:
logger.error("OS_AUTH_URL not provided in env!")
sys.exit(1)

self.USE_APPLICATION_CREDENTIALS = os.environ.get(
"USE_APPLICATION_CREDENTIALS", False
self.USE_APPLICATION_CREDENTIALS = (
os.environ.get("USE_APPLICATION_CREDENTIALS", False).lower() == "true"
)

if self.USE_APPLICATION_CREDENTIALS:
Expand Down

0 comments on commit 68f5919

Please sign in to comment.