[Cloud Security] Fix authorization issue

This commit is contained in:
Ido Cohen 2024-05-16 16:35:50 +03:00 committed by GitHub
parent 55956e0ccc
commit 4caefbc460
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,6 +11,7 @@ import { savedObjectTypes } from '../../saved_objects';
// Same as the saved-object type for rules defined by Cloud Security Posture
const CLOUD_POSTURE_SAVED_OBJECT_RULE_TYPE = 'csp_rule';
const CLOUD_SECURITY_POSTURE_SETTINGS = 'cloud-security-posture-settings';
export const securityDefaultSavedObjects = [
'exception-list',
@ -18,4 +19,5 @@ export const securityDefaultSavedObjects = [
DATA_VIEW_SAVED_OBJECT_TYPE,
...savedObjectTypes,
CLOUD_POSTURE_SAVED_OBJECT_RULE_TYPE,
CLOUD_SECURITY_POSTURE_SETTINGS,
];