mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Ensure pritunl validate_certs is honoured in all methods (#7156)
* Ensure pritunl validate_certs is honoured in all methods * Create changelog fragment * Rename 7156-ensure-validate-certs-parameter-is-honoured to 7156-ensure-validate-certs-parameter-is-honoured.yml * Update changelog fragment. --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
a23cd6c1d5
commit
0862511e82
2 changed files with 7 additions and 5 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- pritunl module utils - ensure ``validate_certs`` parameter is honoured in all methods (https://github.com/ansible-collections/community.general/pull/7156).
|
|
@ -220,7 +220,7 @@ def post_pritunl_organization(
|
||||||
api_secret=api_secret,
|
api_secret=api_secret,
|
||||||
base_url=base_url,
|
base_url=base_url,
|
||||||
organization_data={"name": organization_name},
|
organization_data={"name": organization_name},
|
||||||
validate_certs=True,
|
validate_certs=validate_certs,
|
||||||
)
|
)
|
||||||
|
|
||||||
if response.getcode() != 200:
|
if response.getcode() != 200:
|
||||||
|
@ -248,7 +248,7 @@ def post_pritunl_user(
|
||||||
base_url=base_url,
|
base_url=base_url,
|
||||||
organization_id=organization_id,
|
organization_id=organization_id,
|
||||||
user_data=user_data,
|
user_data=user_data,
|
||||||
validate_certs=True,
|
validate_certs=validate_certs,
|
||||||
)
|
)
|
||||||
|
|
||||||
if response.getcode() != 200:
|
if response.getcode() != 200:
|
||||||
|
@ -267,7 +267,7 @@ def post_pritunl_user(
|
||||||
organization_id=organization_id,
|
organization_id=organization_id,
|
||||||
user_data=user_data,
|
user_data=user_data,
|
||||||
user_id=user_id,
|
user_id=user_id,
|
||||||
validate_certs=True,
|
validate_certs=validate_certs,
|
||||||
)
|
)
|
||||||
|
|
||||||
if response.getcode() != 200:
|
if response.getcode() != 200:
|
||||||
|
@ -287,7 +287,7 @@ def delete_pritunl_organization(
|
||||||
api_secret=api_secret,
|
api_secret=api_secret,
|
||||||
base_url=base_url,
|
base_url=base_url,
|
||||||
organization_id=organization_id,
|
organization_id=organization_id,
|
||||||
validate_certs=True,
|
validate_certs=validate_certs,
|
||||||
)
|
)
|
||||||
|
|
||||||
if response.getcode() != 200:
|
if response.getcode() != 200:
|
||||||
|
@ -307,7 +307,7 @@ def delete_pritunl_user(
|
||||||
base_url=base_url,
|
base_url=base_url,
|
||||||
organization_id=organization_id,
|
organization_id=organization_id,
|
||||||
user_id=user_id,
|
user_id=user_id,
|
||||||
validate_certs=True,
|
validate_certs=validate_certs,
|
||||||
)
|
)
|
||||||
|
|
||||||
if response.getcode() != 200:
|
if response.getcode() != 200:
|
||||||
|
|
Loading…
Reference in a new issue