summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--os_client_config/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/os_client_config/config.py b/os_client_config/config.py
index 208b18a..6d96655 100644
--- a/os_client_config/config.py
+++ b/os_client_config/config.py
@@ -95,11 +95,13 @@ class OpenStackConfig(object):
else:
our_cloud = dict()
+ # Get the defaults (including env vars) first
+ cloud.update(self.defaults)
+
# yes, I know the next line looks silly
if 'cloud' in our_cloud:
cloud.update(vendors.CLOUD_DEFAULTS[our_cloud['cloud']])
- cloud.update(self.defaults)
cloud.update(our_cloud)
if 'cloud' in cloud:
del cloud['cloud']