ansible/test/integration/targets/incidental_setup_tls/tasks/main.yml
Matt Clay 7c8b046b5f
Fourth batch of incidental integration tests. (#67873)
* Copy in incidental posix tests.

* Update incidental test aliases.

* Update target names.

* Add support plugins.

* Fix paths.

* Update ignores.

* Update integration-aliases sanity test.

* Add incidental tests to CI.
2020-02-28 20:37:50 -08:00

21 lines
497 B
YAML

---
# Generated certificate with: https://github.com/michaelklishin/tls-gen
# ~/tls-gen/basic# make PASSWORD=bunnies CN=ansible.tls.tests
# verify with: make info
- name: ensure target directory is present
file:
path: /tls
state: directory
- name: ensure TLS files are present
copy:
src: "{{ item }}"
dest: "/tls/{{ item }}"
loop:
- ca_certificate.pem
- ca_key.pem
- client_certificate.pem
- client_key.pem
- server_certificate.pem
- server_key.pem