Created
July 28, 2014 08:01
-
-
Save waltervargas/4e8afb1d02525bcad907 to your computer and use it in GitHub Desktop.
ansible task for copy ssl certs to Debian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Install SSL Certs | |
copy: src={{ item.src }} dest={{ item.dest }} owner=root group={{ item.group }} mode={{ item.mode }} | |
with_items: | |
- { src: server.crt, dest: /etc/ssl/certs, mode: 644 , group: root } | |
- { src: server.key, dest: /etc/ssl/private, mode: 640, group: ssl-cert } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I did my own