Skip to content

Commit a11085c

Browse files
authored
[Fleet] added privileges for fleet-synced-integrations (#121753)
* added privileges for fleet-synced-integrations * Update index-templates.asciidoc * Revert "Update index-templates.asciidoc" This reverts commit b73bae8.
1 parent 7deaacd commit a11085c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/store/KibanaOwnedReservedRoleDescriptors.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,11 @@ static RoleDescriptor kibanaSystem(String name) {
229229
RoleDescriptor.IndicesPrivileges.builder().indices("metrics-fleet_server*").privileges("all").build(),
230230
// Fleet reads output health from this index pattern
231231
RoleDescriptor.IndicesPrivileges.builder().indices("logs-fleet_server*").privileges("read", "delete_index").build(),
232+
// Fleet creates and writes this index for sync integrations feature
233+
RoleDescriptor.IndicesPrivileges.builder()
234+
.indices("fleet-synced-integrations")
235+
.privileges("create_index", "manage", "read", "write")
236+
.build(),
232237
// Legacy "Alerts as data" used in Security Solution.
233238
// Kibana user creates these indices; reads / writes to them.
234239
RoleDescriptor.IndicesPrivileges.builder()

0 commit comments

Comments
 (0)