diff options
Diffstat (limited to 'test/integration/targets/aci_domain/tasks/l2dom.yml')
-rw-r--r-- | test/integration/targets/aci_domain/tasks/l2dom.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/aci_domain/tasks/l2dom.yml b/test/integration/targets/aci_domain/tasks/l2dom.yml index 7bec569e59..60515e5119 100644 --- a/test/integration/targets/aci_domain/tasks/l2dom.yml +++ b/test/integration/targets/aci_domain/tasks/l2dom.yml @@ -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") }}' domain: l2_dom domain_type: l2dom state: absent @@ -28,7 +28,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") }}' domain: l2_dom domain_type: l2dom state: present @@ -72,7 +72,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") }}' domain_type: l2dom state: query check_mode: yes |