Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ public class InternalUsers {
// System data stream for result history of fleet actions (see Fleet#fleetActionsResultsDescriptor)
".fleet-actions-results",
// System data streams for storing uploaded file data for Agent diagnostics and Endpoint response actions
".fleet-fileds*"
".fleet-fileds*",
// System data stream for kibana workflows logs
".workflows-execution-data-stream-logs"
)
.privileges(
filterNonNull(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ public void testDataStreamLifecycleUser() {
assertThat(role.application(), is(ApplicationPermission.NONE));
assertThat(role.remoteIndices(), is(RemoteIndicesPermission.NONE));

final List<String> allowedSystemDataStreams = Arrays.asList(".fleet-actions-results", ".fleet-fileds*");
final List<String> allowedSystemDataStreams = Arrays.asList(
".fleet-actions-results",
".fleet-fileds*",
".workflows-execution-data-stream-logs"
);
for (var group : role.indices().groups()) {
if (group.allowRestrictedIndices()) {
assertThat(group.indices(), arrayContaining(allowedSystemDataStreams.toArray(new String[0])));
Expand Down