From 6e384283757909a327d32b82d3680f78d5dc4733 Mon Sep 17 00:00:00 2001 From: Maxim Kravets Date: Thu, 19 May 2016 12:00:38 +0200 Subject: [PATCH] Ansible 2.x stuff --- CONTRIBUTING.md | 1 - CONTRIBUTORS.md | 2 +- README.md | 2 -- tasks/main.yml | 6 +++--- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 75dadfc..80ab7cd 100755 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,4 +3,3 @@ How to Contribute We welcome community contributions! You can help by reporting bugs, fixing code, adding new features and/or better documentation. We use the common fork, feature branch, pull request workflow. If you would like to contribute to the project, fork the project, create a feature branch, make your changes and then issue a pull request. See [Using pull requests](https://help.github.com/articles/using-pull-requests/) - diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ddb0e03..02e27b4 100755 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ Contributors (sorted alphabeticaly) === -* [Adham Helal](https://github.com/ahelal) \ No newline at end of file +* [Adham Helal](https://github.com/ahelal) diff --git a/README.md b/README.md index 6162dd0..eec4dc9 100644 --- a/README.md +++ b/README.md @@ -79,5 +79,3 @@ Following command is used to encrypt file. Following command is used to edit encrypted file. ansible-vault edit vault-ssl.yml - - diff --git a/tasks/main.yml b/tasks/main.yml index e3d10d8..b58e57c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -11,7 +11,7 @@ src="pemfile.j2" dest="{{ ssl_path }}/{{ item.hostname }}.pem" mode="0600" - with_items: ssl_cert + with_items: "{{ ssl_cert }}" no_log: True - name: Deploy key file @@ -19,5 +19,5 @@ src="keyfile.j2" dest="{{ ssl_path }}/{{ item.hostname }}.key" mode="0600" - with_items: ssl_cert - no_log: True \ No newline at end of file + with_items: "{{ ssl_cert }}" + no_log: True