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

Added sharingDomainRestrictionMode Standard #2553

Merged
Merged
Changes from all commits
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
35 changes: 35 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -1506,6 +1506,41 @@
"impact": "High Impact",
"impactColour": "danger"
},
{
"name": "standards.sharingDomainRestriction",
"cat": "SharePoint Standards",
"tag": ["highimpact", "CIS"],
"helpText": "Restricts sharing to only users with the specified domain. This is useful for organizations that only want to share with their own domain.",
"addedComponent": [
{
"type": "Select",
"name": "standards.sharingDomainRestriction.Mode",
"label": "Limit external sharing by domains",
"values": [
{
"label": "Off",
"value": "none"
},
{
"label": "Restirct sharing to specific domains",
"value": "allowList"
},
{
"label": "Block sharing to specific domains",
"value": "blockList"
}
]
},
{
"type": "input",
"name": "standards.sharingDomainRestriction.Domains",
"label": "Domains to allow/block, comma separated"
}
],
"label": "Restrict sharing to a specific domain",
"impact": "High Impact",
"impactColour": "danger"
},
{
"name": "standards.TenantDefaultTimezone",
"cat": "SharePoint Standards",
Expand Down
Loading