Skip to content

Commit

Permalink
Reenable subfeaturePrivileges flag + update kibana security tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kpollich committed Apr 10, 2024
1 parent b4d947d commit dbcf408
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/fleet/common/experimental_features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const allowedExperimentalValues = Object.freeze<Record<string, boolean>>(
remoteESOutput: true,
agentless: false,
enableStrictKQLValidation: false,
subfeaturePrivileges: false,
subfeaturePrivileges: true,
enablePackagesStateMachine: true,
advancedPolicySettings: true,
});
Expand Down
13 changes: 12 additions & 1 deletion x-pack/test/api_integration/apis/security/privileges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,18 @@ export default function ({ getService }: FtrProviderContext) {
],
observabilityAIAssistant: ['all', 'read', 'minimal_all', 'minimal_read'],
slo: ['all', 'read', 'minimal_all', 'minimal_read'],
fleetv2: ['all', 'read', 'minimal_all', 'minimal_read'],
fleetv2: [
'all',
'read',
'minimal_all',
'minimal_read',
'agents_all',
'agents_read',
'agent_policies_all',
'agent_policies_read',
'settings_all',
'settings_read',
],
fleet: ['all', 'read', 'minimal_all', 'minimal_read'],
actions: ['all', 'read', 'minimal_all', 'minimal_read'],
stackAlerts: ['all', 'read', 'minimal_all', 'minimal_read'],
Expand Down

0 comments on commit dbcf408

Please sign in to comment.