Skip to content

Commit

Permalink
[MAPS] Updating file upload privileges for maps test user (elastic#20…
Browse files Browse the repository at this point in the history
…3992)

Clears deprecation warning triggered by maps file upload test.
The role used by the test user needs to now include `manage`

This should clear the `elastic/kibana-presentation` deprecation warnings
raised [here](elastic/kibana-team#1173)
  • Loading branch information
jgowdyelastic authored Dec 16, 2024
1 parent 4ea032e commit 6f38a4c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion x-pack/test/functional/config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,14 @@ export default async function ({ readConfigFile }) {
indices: [
{
names: ['*'],
privileges: ['create', 'read', 'view_index_metadata', 'monitor', 'create_index'],
privileges: [
'create',
'read',
'view_index_metadata',
'monitor',
'create_index',
'manage',
],
},
],
},
Expand Down

0 comments on commit 6f38a4c

Please sign in to comment.