Skip to content

Commit

Permalink
Merge pull request #3944 from akulavasu/release-6.0.0
Browse files Browse the repository at this point in the history
Renamed variable
  • Loading branch information
santhosh-tg authored Jul 3, 2024
2 parents b10b5ca + 2df0fe4 commit 74793b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ansible/roles/log-es6/tasks/plugins/repository-oci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@
shell: echo "{{ cloud_management_storage_accountname }}" | {{ es_home }}/bin/elasticsearch-keystore add -f s3.client.default.access_key
no_log: True
environment:
ES_PATH_CONF: "{{ conf_dir }}"
ES_PATH_CONF: "{{ es_conf_dir }}"

- name: Add default oci account key for backups
become: yes
shell: echo "{{ cloud_management_storage_secret }}" | {{ es_home }}/bin/elasticsearch-keystore add -f s3.client.default.secret_key
no_log: True
environment:
ES_PATH_CONF: "{{ conf_dir }}"
ES_PATH_CONF: "{{ es_conf_dir }}"


- name: Add default oci endpoint for backups
become: yes
shell: echo "{{ cloud_management_storage_endpoint }}" | {{ es_home }}/bin/elasticsearch-keystore add -f s3.client.default.endpoint
no_log: True
environment:
ES_PATH_CONF: "{{ conf_dir }}"
ES_PATH_CONF: "{{ es_conf_dir }}"

- name: Add default oci region for backups
become: yes
shell: echo "{{ cloud_management_storage_region }}" | {{ es_home }}/bin/elasticsearch-keystore add -f s3.client.default.region
no_log: True
environment:
ES_PATH_CONF: "{{ conf_dir }}"
ES_PATH_CONF: "{{ es_conf_dir }}"

- name: Add default path-style access for backups
become: yes
shell: echo "{{ cloud_management_storage_path_style_access }}" | {{ es_home }}/bin/elasticsearch-keystore add -f s3.client.default.path_style_access
no_log: True
environment:
ES_PATH_CONF: "{{ conf_dir }}"
ES_PATH_CONF: "{{ es_conf_dir }}"

0 comments on commit 74793b6

Please sign in to comment.