Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v14] feat: External Audit Storage #34740

Merged
merged 10 commits into from
Nov 20, 2023
Prev Previous commit
Merge branch 'branch/v14' into nklaassen/v14/eas
  • Loading branch information
nklaassen committed Nov 20, 2023
commit 5add343a8669624f85b3451980304474088fbf4b
1 change: 1 addition & 0 deletions web/packages/teleport/src/mocks/contexts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export const allAccessAcl: Acl = {
auditQuery: fullAccess,
securityReport: fullAccess,
externalCloudAudit: fullAccess,
accessGraph: fullAccess,
};

export function getAcl(cfg?: { noAccess: boolean }) {
Expand Down
1 change: 1 addition & 0 deletions web/packages/teleport/src/services/user/makeAcl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export function makeAcl(json): Acl {
auditQuery,
securityReport,
externalCloudAudit,
accessGraph,
};
}

Expand Down
1 change: 1 addition & 0 deletions web/packages/teleport/src/services/user/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export interface Acl {
auditQuery: Access;
securityReport: Access;
externalCloudAudit: Access;
accessGraph: Access;
}

// AllTraits represent all the traits defined for a user.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.