File tree Expand file tree Collapse file tree 5 files changed +19
-4
lines changed
tests/test_playbooks/tasks Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ codeaffen.phpipam Release Notes
5
5
.. contents :: Topics
6
6
7
7
8
+ v1.1.1
9
+ ======
10
+
11
+ Bugfixes
12
+ --------
13
+
14
+ - Fix `validate_certs ` is not used for api connection (https://github.com/codeaffen/phpipam-ansible-modules/issues/27)
15
+
8
16
v1.1.0
9
17
======
10
18
Original file line number Diff line number Diff line change @@ -51,3 +51,10 @@ releases:
51
51
fragments :
52
52
- missing_validate_certs_parameter.yml
53
53
release_date : ' 2020-11-12'
54
+ 1.1.1 :
55
+ changes :
56
+ bugfixes :
57
+ - Fix `validate_certs` is not used for api connection (https://github.com/codeaffen/phpipam-ansible-modules/issues/27)
58
+ fragments :
59
+ - fix_validate_certs_not_used.yml
60
+ release_date : ' 2020-11-12'
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: "phpipam"
3
3
description : Ansible Modules to manage phpIPAM installations
4
4
authors :
5
5
- " Christian Meißner <cme+ansible@meissner.sh>"
6
- version : " 1.1.0 "
6
+ version : " 1.1.1 "
7
7
license :
8
8
- " GPL-3.0-or-later"
9
9
tags :
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def __init__(self, **kwargs):
82
82
self ._phpipamapi_app_id = self .phpipam_params .get ('app_id' )
83
83
self ._phpipamapi_username = self .phpipam_params .get ('username' )
84
84
self ._phpipamapi_password = self .phpipam_params .get ('password' )
85
- self ._phpipamapi_ssl_verify = self .phpipam_params .get ('ssl_verify ' , True )
85
+ self ._phpipamapi_validate_certs = self .phpipam_params .get ('validate_certs ' , True )
86
86
self ._phpipamapi_path = kwargs .get ('phpipam_path' )
87
87
self ._phpipamapi_params = kwargs .get ('phpipam_params' )
88
88
@@ -116,7 +116,7 @@ def connect(self):
116
116
app_id = self ._phpipamapi_app_id ,
117
117
username = self ._phpipamapi_username ,
118
118
password = self ._phpipamapi_password ,
119
- ssl_verify = self ._phpipamapi_ssl_verify ,
119
+ ssl_verify = self ._phpipamapi_validate_certs ,
120
120
user_agent = "phpipam-ansible-modules" ,
121
121
)
122
122
Original file line number Diff line number Diff line change 16
16
show_vrf : " {{ section_show_vrf | default(omit) }}"
17
17
show_supernets_only : " {{ section_show_supernets_only | default(omit) }}"
18
18
dns_resolver : " {{ section_dns_resolver | default(omit) }}"
19
- validate_certs : " {{ section_validate_certs | default(omit ) }}"
19
+ validate_certs : " {{ section_validate_certs | default('no' ) }}"
20
20
state : " {{ section_state | default('present') }}"
You can’t perform that action at this time.
0 commit comments