Skip to content

Commit e2dfed0

Browse files
committed
Added Teams Federation Configuration Standard
1 parent 3ebd874 commit e2dfed0

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

src/data/standards.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2376,5 +2376,57 @@
23762376
"impactColour": "info",
23772377
"powershellEquivalent": "Set-CsTeamsClientConfiguration -AllowGoogleDrive $false -AllowShareFile $false -AllowBox $false -AllowDropBox $false -AllowEgnyte $false",
23782378
"recommendedBy": ["CIS 3.0"]
2379+
},
2380+
{
2381+
"name": "standards.TeamsFederationConfiguration",
2382+
"cat": "Teams Standards",
2383+
"tag": ["mediumimpact"],
2384+
"helpText": "Sets the properties of the Global federation configuration.",
2385+
"docsDescription": "Sets the properties of the Global federation configuration. Federation configuration settings determine whether or not your users can communicate with users who have SIP accounts with a federated organization.",
2386+
"addedComponent": [
2387+
{
2388+
"type": "boolean",
2389+
"name": "standards.TeamsFederationConfiguration.AllowTeamsConsumer",
2390+
"label": "Allow users to communicate with other organizations"
2391+
},
2392+
{
2393+
"type": "boolean",
2394+
"name": "standards.TeamsFederationConfiguration.AllowPublicUsers",
2395+
"label": "Allow users to communicate with Skype Users"
2396+
},
2397+
{
2398+
"type": "Select",
2399+
"name": "standards.TeamsFederationConfiguration.DomainControl",
2400+
"label": "Communication Mode",
2401+
"values": [
2402+
{
2403+
"label": "Allow all external domains",
2404+
"value": "AllowAllExternal"
2405+
},
2406+
{
2407+
"label": "Block all external domains",
2408+
"value": "BlockAllExternal"
2409+
},
2410+
{
2411+
"label": "Allow specific external domains",
2412+
"value": "AllowSpecificExternal"
2413+
},
2414+
{
2415+
"label": "Block specific external domains",
2416+
"value": "BlockSpecificExternal"
2417+
}
2418+
]
2419+
},
2420+
{
2421+
"type": "input",
2422+
"name": "standards.TeamsFederationConfiguration.DomainList",
2423+
"label": "Domains, Comma separated"
2424+
}
2425+
],
2426+
"label": "Federation Configuration for Microsoft Teams",
2427+
"impact": "Medium Impact",
2428+
"impactColour": "warning",
2429+
"powershellEquivalent": "Set-CsTenantFederationConfiguration",
2430+
"recommendedBy": []
23792431
}
23802432
]

0 commit comments

Comments
 (0)