mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
485 B
YAML
20 lines
485 B
YAML
2 years ago
|
- name: test good cipher
|
||
|
get_url:
|
||
|
url: https://{{ httpbin_host }}/get
|
||
|
ciphers: ECDHE-RSA-AES128-SHA256
|
||
|
dest: '{{ remote_tmp_dir }}/good_cipher_get.json'
|
||
|
register: good_ciphers
|
||
|
|
||
|
- name: test bad cipher
|
||
|
uri:
|
||
|
url: https://{{ httpbin_host }}/get
|
||
|
ciphers: ECDHE-ECDSA-AES128-SHA
|
||
|
dest: '{{ remote_tmp_dir }}/bad_cipher_get.json'
|
||
|
ignore_errors: true
|
||
|
register: bad_ciphers
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- good_ciphers is successful
|
||
|
- bad_ciphers is failed
|