Ansible linting compliant variables

This commit is contained in:
Manuel J. Bernal 2020-05-08 15:54:23 +02:00
parent 3c6e08c7cf
commit d7be137e6e
2 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
path: "{{ item }}"
state: absent
with_items:
- "{{opendistro_conf_path}}/kirk.pem"
- "{{opendistro_conf_path}}/kirk-key.pem"
- "{{opendistro_conf_path}}/esnode.pem"
- "{{opendistro_conf_path}}/esnode-key.pem"
- "{{ opendistro_conf_path }}/kirk.pem"
- "{{ opendistro_conf_path }}/kirk-key.pem"
- "{{ opendistro_conf_path }}/esnode.pem"
- "{{ opendistro_conf_path }}/esnode-key.pem"
when: install.changed
- name: Copy the node & admin certificates to Elasticsearch cluster

View File

@ -12,7 +12,7 @@
- name: Remove elasticsearch configuration file
file:
path: "{{opendistro_conf_path}}/elasticsearch.yml"
path: "{{ opendistro_conf_path }}/elasticsearch.yml"
state: absent
when: install.changed
tags: install