Skip to content

Commit

Permalink
Remove requirement for manage_index_templates privilege for Index Man…
Browse files Browse the repository at this point in the history
…agement (#77377) (#78224)
  • Loading branch information
cjcenizal authored Sep 22, 2020
1 parent 4870680 commit cfb4899
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x-pack/plugins/index_management/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ export class IndexMgmtServerPlugin implements Plugin<IndexManagementPluginSetup,
},
privileges: [
{
requiredClusterPrivileges: ['monitor', 'manage_index_templates'],
// manage_index_templates is also required, but we will disable specific parts of the
// UI if this privilege is missing.
requiredClusterPrivileges: ['monitor'],
ui: [],
},
],
Expand Down

0 comments on commit cfb4899

Please sign in to comment.