diff --git a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/privilege/ClusterPrivilegeResolver.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/privilege/ClusterPrivilegeResolver.java index 33a39e5f5ba..1e7940a0935 100644 --- a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/privilege/ClusterPrivilegeResolver.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/privilege/ClusterPrivilegeResolver.java @@ -69,7 +69,7 @@ public class ClusterPrivilegeResolver { private static final Set TRANSPORT_CLIENT_PATTERN = Collections.unmodifiableSet( Sets.newHashSet("cluster:monitor/nodes/liveness", "cluster:monitor/state")); private static final Set MANAGE_IDX_TEMPLATE_PATTERN = Collections.unmodifiableSet(Sets.newHashSet("indices:admin/template/*", - "indices:admin/index_template/*")); + "indices:admin/index_template/*", "cluster:admin/component_template/*")); private static final Set MANAGE_INGEST_PIPELINE_PATTERN = Collections.singleton("cluster:admin/ingest/pipeline/*"); private static final Set MANAGE_ROLLUP_PATTERN = Collections.unmodifiableSet( Sets.newHashSet("cluster:admin/xpack/rollup/*", "cluster:monitor/xpack/rollup/*"));