Skip to content

Commit

Permalink
Make security rules optional (revert #97191) (#98854) (#98860)
Browse files Browse the repository at this point in the history
Co-authored-by: Ross Wolf <31489089+rw-access@users.noreply.github.com>
  • Loading branch information
kibanamachine and rw-access authored Apr 30, 2021
1 parent eaae66c commit 3d7966b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion x-pack/plugins/fleet/common/constants/epm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export const requiredPackages = {
Endpoint: 'endpoint',
ElasticAgent: 'elastic_agent',
FleetServer: FLEET_SERVER_PACKAGE,
SecurityDetectionEngine: 'security_detection_engine',
} as const;

// these are currently identical. we can separate if they later diverge
Expand Down
8 changes: 1 addition & 7 deletions x-pack/test/fleet_api_integration/apis/fleet_setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,7 @@ export default function (providerContext: FtrProviderContext) {
.map((p: any) => p.name)
.sort();

expect(installedPackages).to.eql([
'elastic_agent',
'endpoint',
'fleet_server',
'security_detection_engine',
'system',
]);
expect(installedPackages).to.eql(['elastic_agent', 'endpoint', 'fleet_server', 'system']);
});
});
}

0 comments on commit 3d7966b

Please sign in to comment.