mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
ACI: Support validate_certs, use_ssl and use_proxy (#35146)
This PR includes: - validate_certs, use_ssl and use_proxy support for the integration tests
This commit is contained in:
parent
4b8e76747e
commit
2bd0653488
35 changed files with 225 additions and 76 deletions
|
@ -4,7 +4,9 @@
|
|||
host: "{{ aci_hostname }}"
|
||||
username: "{{ aci_username }}"
|
||||
password: "{{ aci_password }}"
|
||||
validate_certs: no
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
state: absent
|
||||
pool: anstest
|
||||
pool_type: vlan
|
||||
|
|
|
@ -4,8 +4,10 @@
|
|||
host: "{{ aci_hostname }}"
|
||||
username: "{{ aci_username }}"
|
||||
password: "{{ aci_password }}"
|
||||
validate_certs: no
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
state: absent
|
||||
pool: anstest
|
||||
pool_type: vsan
|
||||
allocation_mode: static
|
||||
allocation_mode: static
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
host: "{{ aci_hostname }}"
|
||||
username: "{{ aci_username }}"
|
||||
password: "{{ aci_password }}"
|
||||
validate_certs: no
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
state: absent
|
||||
pool: anstest
|
||||
pool_type: vxlan
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue