We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dba309 commit 8522516Copy full SHA for 8522516
simple_vm_client/openstack_connector/openstack_connector.py
@@ -135,9 +135,11 @@ def load_env_config(self) -> None:
135
if self.USE_APPLICATION_CREDENTIALS:
136
logger.info("APPLICATION CREDENTIALS will be used!")
137
try:
138
- self.APPLICATION_CREDENTIAL_ID = os.environ["APPLICATION_CREDENTIAL_ID"]
+ self.APPLICATION_CREDENTIAL_ID = os.environ[
139
+ "OS_APPLICATION_CREDENTIAL_ID"
140
+ ]
141
self.APPLICATION_CREDENTIAL_SECRET = os.environ[
- "APPLICATION_CREDENTIAL_SECRET"
142
+ "OS_APPLICATION_CREDENTIAL_SECRET"
143
]
144
except KeyError:
145
logger.error(
0 commit comments