Add back in force_basic_auth for all http requests
Related: #576 This is needed when using security for 6.x. All other http requests still have this parameter added.
This commit is contained in:
parent
5b1d028bd2
commit
582c79c607
2 changed files with 2 additions and 0 deletions
|
|
@ -20,6 +20,7 @@
|
||||||
status_code: 200
|
status_code: 200
|
||||||
user: "{{es_api_basic_auth_username | default(omit)}}"
|
user: "{{es_api_basic_auth_username | default(omit)}}"
|
||||||
password: "{{es_api_basic_auth_password | default(omit)}}"
|
password: "{{es_api_basic_auth_password | default(omit)}}"
|
||||||
|
force_basic_auth: yes
|
||||||
body_format: json
|
body_format: json
|
||||||
body: "{{ lookup('file', item) }}"
|
body: "{{ lookup('file', item) }}"
|
||||||
when: load_templates.changed and es_start_service
|
when: load_templates.changed and es_start_service
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
body_format: json
|
body_format: json
|
||||||
body: "{{ es_xpack_license }}"
|
body: "{{ es_xpack_license }}"
|
||||||
return_content: yes
|
return_content: yes
|
||||||
|
force_basic_auth: yes
|
||||||
register: license_activated
|
register: license_activated
|
||||||
no_log: True
|
no_log: True
|
||||||
failed_when: >
|
failed_when: >
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue