mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a385cbb11d
* Adding cryptography as a backend for OpenSSL operations * Updating unit tests and adding changelog fragment * Allowing private key password option when using unprotected key * Incorporating suggestions from initial review * Centralizing module exit path
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
- when: has_java_keytool
|
|
connection: local
|
|
block:
|
|
- name: Include tasks to create ssl materials on the controller
|
|
include_tasks: prepare.yml
|
|
|
|
- set_fact:
|
|
ssl_backends: ['openssl']
|
|
|
|
- set_fact:
|
|
ssl_backends: "{{ ssl_backends + ['cryptography'] }}"
|
|
when: cryptography_version.stdout is version('3.0', '>=')
|
|
|
|
- when: has_java_keytool
|
|
block:
|
|
- name: Include tasks to play with 'certificate' and 'private_key' contents
|
|
include_tasks: tests.yml
|
|
vars:
|
|
remote_cert: false
|
|
loop: "{{ ssl_backends }}"
|
|
loop_control:
|
|
loop_var: ssl_backend
|
|
|
|
- name: Include tasks to create ssl materials on the remote host
|
|
include_tasks: prepare.yml
|
|
|
|
- name: Include tasks to play with 'certificate_path' and 'private_key_path' locations
|
|
include_tasks: tests.yml
|
|
vars:
|
|
remote_cert: true
|
|
loop: "{{ ssl_backends }}"
|
|
loop_control:
|
|
loop_var: ssl_backend
|