ansible-role-nginx/tasks/plus/setup-license.yml
Alessandro Fael Garcia e2b83ac215 Initial role commit
2018-01-10 14:40:01 -08:00

14 lines
293 B
YAML

---
- name: "(All OSs) Create SSL directory"
file:
path: /etc/ssl/nginx
state: directory
- name: "(All OSs) Copy NGINX Plus Certificate and License Key"
copy:
src: "{{ item }}"
dest: /etc/ssl/nginx
with_items:
- "{{ license.certificate }}"
- "{{ license.key }}"