mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00: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:
@@ -13,8 +13,10 @@
|
||||
host: "{{ aci_hostname }}"
|
||||
username: "{{ aci_username }}"
|
||||
password: "{{ aci_password }}"
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
leaf_profile: sw_name_test
|
||||
validate_certs: no
|
||||
state: absent
|
||||
|
||||
- name: Ensuring Switch Policy Leaf profile exists for kick off
|
||||
@@ -22,8 +24,10 @@
|
||||
host: "{{ aci_hostname }}"
|
||||
username: "{{ aci_username }}"
|
||||
password: "{{ aci_password }}"
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
leaf_profile: sw_name_test
|
||||
validate_certs: no
|
||||
state: present
|
||||
register: leaf_profile_present
|
||||
|
||||
|
||||
Reference in New Issue
Block a user