File tree Expand file tree Collapse file tree 17 files changed +223
-1
lines changed
tests/test_playbooks/tasks Expand file tree Collapse file tree 17 files changed +223
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ codeaffen.phpipam Release Notes
55.. contents :: Topics
66
77
8+ v1.1.0
9+ ======
10+
11+ Bugfixes
12+ --------
13+
14+ - Fixing `There is no `validate_certs ` parameter in modules` bug (https://github.com/codeaffen/phpipam-ansible-modules/issues/25)
15+
816v1.0.0
917======
1018
Original file line number Diff line number Diff line change @@ -44,3 +44,10 @@ releases:
4444 fragments :
4545 - finally_go_stabel.yml
4646 release_date : ' 2020-10-30'
47+ 1.1.0 :
48+ changes :
49+ bugfixes :
50+ - Fixing `There is no `validate_certs` parameter in modules` bug (https://github.com/codeaffen/phpipam-ansible-modules/issues/25)
51+ fragments :
52+ - missing_validate_certs_parameter.yml
53+ release_date : ' 2020-11-12'
Original file line number Diff line number Diff line change @@ -374,6 +374,25 @@ Parameters
374374 <td >
375375 <div >Username to access phpIPAM server</div >
376376 </td >
377+ </tr >
378+ <tr >
379+ <td colspan =" 1" >
380+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
381+ <b >validate_certs</b >
382+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
383+ <div style =" font-size : small " >
384+ <span style =" color : purple " >boolean</span >
385+ </div >
386+ </td >
387+ <td >
388+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
389+ <li >no</li >
390+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
391+ </ul >
392+ </td >
393+ <td >
394+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
395+ </td >
377396 </tr >
378397 </table >
379398 <br />
Original file line number Diff line number Diff line change @@ -456,6 +456,25 @@ Parameters
456456 <td >
457457 <div >Username to access phpIPAM server</div >
458458 </td >
459+ </tr >
460+ <tr >
461+ <td colspan =" 1" >
462+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
463+ <b >validate_certs</b >
464+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
465+ <div style =" font-size : small " >
466+ <span style =" color : purple " >boolean</span >
467+ </div >
468+ </td >
469+ <td >
470+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
471+ <li >no</li >
472+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
473+ </ul >
474+ </td >
475+ <td >
476+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
477+ </td >
459478 </tr >
460479 </table >
461480 <br />
Original file line number Diff line number Diff line change @@ -180,6 +180,25 @@ Parameters
180180 <td >
181181 <div >Username to access phpIPAM server</div >
182182 </td >
183+ </tr >
184+ <tr >
185+ <td colspan =" 1" >
186+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
187+ <b >validate_certs</b >
188+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
189+ <div style =" font-size : small " >
190+ <span style =" color : purple " >boolean</span >
191+ </div >
192+ </td >
193+ <td >
194+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
195+ <li >no</li >
196+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
197+ </ul >
198+ </td >
199+ <td >
200+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
201+ </td >
183202 </tr >
184203 </table >
185204 <br />
Original file line number Diff line number Diff line change @@ -195,6 +195,25 @@ Parameters
195195 <td >
196196 <div >Username to access phpIPAM server</div >
197197 </td >
198+ </tr >
199+ <tr >
200+ <td colspan =" 1" >
201+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
202+ <b >validate_certs</b >
203+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
204+ <div style =" font-size : small " >
205+ <span style =" color : purple " >boolean</span >
206+ </div >
207+ </td >
208+ <td >
209+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
210+ <li >no</li >
211+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
212+ </ul >
213+ </td >
214+ <td >
215+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
216+ </td >
198217 </tr >
199218 </table >
200219 <br />
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Module Plugins
2121* :ref: `nameserver <ansible_collections.codeaffen.phpipam.nameserver_module >` -- Manage nameservers
2222* :ref: `section <ansible_collections.codeaffen.phpipam.section_module >` -- Manage sections
2323* :ref: `subnet <ansible_collections.codeaffen.phpipam.subnet_module >` -- Manage subnets
24+ * :ref: `tag <ansible_collections.codeaffen.phpipam.tag_module >` --
2425* :ref: `vlan <ansible_collections.codeaffen.phpipam.vlan_module >` -- Manage vlans
2526* :ref: `vrf <ansible_collections.codeaffen.phpipam.vrf_module >` -- Manage virtual routers and forwarders
2627
Original file line number Diff line number Diff line change @@ -210,6 +210,25 @@ Parameters
210210 <td >
211211 <div >Username to access phpIPAM server</div >
212212 </td >
213+ </tr >
214+ <tr >
215+ <td colspan =" 1" >
216+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
217+ <b >validate_certs</b >
218+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
219+ <div style =" font-size : small " >
220+ <span style =" color : purple " >boolean</span >
221+ </div >
222+ </td >
223+ <td >
224+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
225+ <li >no</li >
226+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
227+ </ul >
228+ </td >
229+ <td >
230+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
231+ </td >
213232 </tr >
214233 </table >
215234 <br />
Original file line number Diff line number Diff line change @@ -336,6 +336,25 @@ Parameters
336336 <td >
337337 <div >Username to access phpIPAM server</div >
338338 </td >
339+ </tr >
340+ <tr >
341+ <td colspan =" 1" >
342+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
343+ <b >validate_certs</b >
344+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
345+ <div style =" font-size : small " >
346+ <span style =" color : purple " >boolean</span >
347+ </div >
348+ </td >
349+ <td >
350+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
351+ <li >no</li >
352+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
353+ </ul >
354+ </td >
355+ <td >
356+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
357+ </td >
339358 </tr >
340359 </table >
341360 <br />
Original file line number Diff line number Diff line change @@ -505,6 +505,25 @@ Parameters
505505 <td >
506506 <div >Username to access phpIPAM server</div >
507507 </td >
508+ </tr >
509+ <tr >
510+ <td colspan =" 1" >
511+ <div class =" ansibleOptionAnchor" id =" parameter-validate_certs" ></div >
512+ <b >validate_certs</b >
513+ <a class =" ansibleOptionLink" href =" #parameter-validate_certs" title =" Permalink to this option" ></a >
514+ <div style =" font-size : small " >
515+ <span style =" color : purple " >boolean</span >
516+ </div >
517+ </td >
518+ <td >
519+ <ul style =" margin : 0 ; padding : 0 " ><b >Choices:</b >
520+ <li >no</li >
521+ <li ><div style =" color : blue " ><b >yes</b >  ;&larr ; </div ></li >
522+ </ul >
523+ </td >
524+ <td >
525+ <div >Is the TLS certificate of the phpIPAM server verified or not.</div >
526+ </td >
508527 </tr >
509528 <tr >
510529 <td colspan =" 1" >
You can’t perform that action at this time.
0 commit comments