Skip to content

Commit

Permalink
BPA added entra id validations
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Buechi committed Aug 28, 2024
1 parent c35c03c commit f8fb18f
Showing 1 changed file with 77 additions and 12 deletions.
89 changes: 77 additions & 12 deletions Config/AXE-TENANT.BPATemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,23 @@
}
]
},
{
"name": "BasicAuthDisabled",
"API": "Exchange",
"Command": "Get-TransportConfig",
"ExtractFields": [
"SmtpClientAuthenticationDisabled"
],
"StoreAs": "bool",
"FrontendFields": [
{
"name": "SMTP Basic Auth Disabled",
"desc": "Check if SMTP Basic Authentication is disabled for Exchange Online",
"value": "BasicAuthDisabled",
"formatter": "bool"
}
]
},
{
"name": "MessageCopyforSentAsDisabled",
"API": "Exchange",
Expand Down Expand Up @@ -342,26 +359,74 @@
]
},
{
"name": "SharePointSyncSettings",
"API": "CIPPFunction",
"Command": "Get-CIPPSPOTenant",
"Parameters": {},
"ExtractFields": [
"OneDriveAddShortcutButtonDisabled",
"HideSyncButtonOnDocLib"
],
"StoreAs": "JSON",
"name": "OneDriveAddShortcutButtonDisabled",
"StoreAs": "bool",
"UseExistingInfo": true,
"FrontendFields": [
{
"name": "SPO: Add Shortcut Button Disabled",
"desc": "Check if the Add Shortcut button is disabled for OneDrive",
"value": "SharePointSyncSettings.OneDriveAddShortcutButtonDisabled",
"value": "OneDriveAddShortcutButtonDisabled",
"formatter": "bool"
},
}
]
},
{
"name": "HideSyncButtonOnDocLib",
"StoreAs": "bool",
"UseExistingInfo": true,
"FrontendFields": [
{
"name": "SPO: Sync Button shown",
"desc": "Check if the Sync button is shown for document libraries",
"value": "SharePointSyncSettings.HideSyncButtonOnDocLib",
"value": "HideSyncButtonOnDocLib",
"formatter": "reverseBool"
}
]
},
{
"name": "LAPSEnabled",
"API": "Graph",
"URL": "https://graph.microsoft.com/beta/policies/deviceRegistrationPolicy",
"ExtractFields": [
"localAdminPassword.isEnabled"
],
"StoreAs": "bool",
"FrontendFields": [
{
"name": "LAPS: Enabled",
"desc": "Check if Local Admin Password Solution is enabled",
"value": "LAPSEnabled",
"formatter": "bool"
}
]
},
{
"name": "UnifiedGroupCreationAllowed",
"StoreAs": "bool",
"UseExistingInfo": true,
"FrontendFields": [
{
"name": "Unified Group Creation Disabled",
"desc": "Check if users are allowed to create unified groups (Microsoft 365 Groups)",
"value": "DisableM365GroupUsers",
"formatter": "bool"
}
]
},
{
"name": "SecurityGroupCreationAllowed",
"API": "Graph",
"URL": "https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy",
"ExtractFields": [
"defaultUserRolePermissions.allowedToCreateSecurityGroups"
],
"StoreAs": "bool",
"FrontendFields": [
{
"name": "Security Group Creation Disabled",
"desc": "Check if users are allowed to create security groups",
"value": "SecurityGroupCreationAllowed",
"formatter": "reverseBool"
}
]
Expand Down

0 comments on commit f8fb18f

Please sign in to comment.