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

Changed instructions for DRIVEDOCS.1.7v0.1 per RFC Comment Issue 154 #155

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Disallow users in org from sharing
adhilto committed Jan 23, 2024
commit dd551565ff0d6dc91ea11de08288b5d917dab73d
2 changes: 1 addition & 1 deletion rego/Drive.rego
Original file line number Diff line number Diff line change
@@ -259,7 +259,7 @@ NonCompliantOUs1_7 contains OU if {
Events := utils.FilterEvents(LogEvents, "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS", OU)
count(Events) > 0
LastEvent := utils.GetLastEvent(Events)
SettingValue := "CROSS_DOMAIN_FROM_INTERNAL_ONLY CROSS_DOMAIN_MOVES_BLOCKED INHERIT_FROM_PARENT"
SettingValue := "CROSS_DOMAIN_MOVES_BLOCKED INHERIT_FROM_PARENT"
contains(SettingValue, LastEvent.NewValue) == false
}