mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
ACI: Add ability to enable debug for tests (#43744)
This commit is contained in:
parent
2f5e3a75a3
commit
9a8bae5b67
38 changed files with 122 additions and 50 deletions
|
@ -13,7 +13,7 @@
|
|||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
output_level: info
|
||||
output_level: '{{ aci_output_level | default("info") }}'
|
||||
source: aci-msft-pkg-3.1.1i.zip
|
||||
state: absent
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
# validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
# use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
# use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
# output_level: info
|
||||
# output_level: '{{ aci_output_level | default("info") }}'
|
||||
# source: aci-msft-pkg-3.1.1i.zip
|
||||
# url: foobar.cisco.com/download/cisco/aci/aci-msft-pkg-3.1.1i.zip
|
||||
# url_protocol: http
|
||||
|
@ -74,6 +74,7 @@
|
|||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
output_level: '{{ aci_output_level | default("info") }}'
|
||||
state: query
|
||||
check_mode: yes
|
||||
register: cm_query_all_sources
|
||||
|
@ -177,7 +178,7 @@
|
|||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
||||
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
||||
output_level: info
|
||||
output_level: '{{ aci_output_level | default("info") }}'
|
||||
state: present
|
||||
ignore_errors: yes
|
||||
register: error_on_missing_required_param
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue