summaryrefslogtreecommitdiff
path: root/openstackclient/compute
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/compute')
-rw-r--r--openstackclient/compute/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/compute/client.py b/openstackclient/compute/client.py
index 9bd40a4f..4d3b1b71 100644
--- a/openstackclient/compute/client.py
+++ b/openstackclient/compute/client.py
@@ -38,8 +38,8 @@ def make_client(instance):
api_key=instance._password,
project_id=instance._project_name,
auth_url=instance._auth_url,
- # FIXME(dhellmann): add constructor argument for this
- insecure=False,
+ cacert=instance._cacert,
+ insecure=instance._insecure,
region_name=instance._region_name,
# FIXME(dhellmann): get endpoint_type from option?
endpoint_type='publicURL',