Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update API key permissions for Search Applications (#153446)
Search applications backed by the ES module use read permissions on the search application alias rather than application specific privileges. Example call to create the API key: ``` curl -H 'Content-Type: application/json' -XPOST 'http://localhost:5601/inl/internal/enterprise_search/engines/puggles/api_key' --data-raw '{ "keyName": "puggles-key"}' ``` You can then verify that you can search the application alias using a command like: ``` curl -XGET 'http://localhost:9200/puggles/_search' -H 'Authorization:ApiKey <yourKey>' -H 'Content-Type: application/json' ``` --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
- Loading branch information