File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
main/java/org/elasticsearch/xpack/core/security/user
test/java/org/elasticsearch/xpack/core/security/user Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,9 @@ public class InternalUsers {
180180 // System data stream for result history of fleet actions (see Fleet#fleetActionsResultsDescriptor)
181181 ".fleet-actions-results" ,
182182 // System data streams for storing uploaded file data for Agent diagnostics and Endpoint response actions
183- ".fleet-fileds*"
183+ ".fleet-fileds*" ,
184+ // System data stream for kibana workflows logs
185+ ".workflows-execution-data-stream-logs"
184186 )
185187 .privileges (
186188 filterNonNull (
Original file line number Diff line number Diff line change @@ -253,7 +253,11 @@ public void testDataStreamLifecycleUser() {
253253 assertThat (role .application (), is (ApplicationPermission .NONE ));
254254 assertThat (role .remoteIndices (), is (RemoteIndicesPermission .NONE ));
255255
256- final List <String > allowedSystemDataStreams = Arrays .asList (".fleet-actions-results" , ".fleet-fileds*" );
256+ final List <String > allowedSystemDataStreams = Arrays .asList (
257+ ".fleet-actions-results" ,
258+ ".fleet-fileds*" ,
259+ ".workflows-execution-data-stream-logs"
260+ );
257261 for (var group : role .indices ().groups ()) {
258262 if (group .allowRestrictedIndices ()) {
259263 assertThat (group .indices (), arrayContaining (allowedSystemDataStreams .toArray (new String [0 ])));
You can’t perform that action at this time.
0 commit comments