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.
22 lines
497 B
YAML
22 lines
497 B
YAML
6 years ago
|
---
|
||
|
# 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
|