Skip to content

Commit

Permalink
fix validate certs
Browse files Browse the repository at this point in the history
  • Loading branch information
tanganellilore authored Sep 18, 2024
1 parent 2d60db0 commit ed6d0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/cloudstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def get_api_config(self):
'api_timeout': int(api_config['timeout']),
'api_http_method': api_config['method'],
'api_verify_ssl_cert': api_config['verify'],
'validate_certs': api_config['dangerous_no_tls_verify'],
'validate_certs': not api_config['dangerous_no_tls_verify'],
})
return api_config

Expand Down

0 comments on commit ed6d0f4

Please sign in to comment.