Skip to content

Commit

Permalink
BPA: Fixed validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Buechi committed Aug 28, 2024
1 parent 7e51f92 commit 8f9d947
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Config/AXE-TENANT.BPATemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@
"StoreAs": "bool",
"FrontendFields": [
{
"name": "EID: Security Defaults State Enabled",
"name": "Security Defaults Enabled",
"desc": "Check if Security Defaults are enabled. If using Conditional Access, this should be disabled.",
"value": "SecureDefaultState",
"formatter": "warnBool"
"formatter": "string"
}
]
},
Expand Down Expand Up @@ -206,14 +206,14 @@
"API": "Graph",
"URL": "https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy",
"ExtractFields": [
"defaultUserRolePermissions.allowedToCreateTenants"
"defaultUserRolePermissions"
],
"StoreAs": "bool",
"StoreAs": "JSON",
"FrontendFields": [
{
"name": "Tenant Creation Disabled",
"desc": "Check if users are allowed to create tenants",
"value": "AllowedToCreateTenants",
"value": "AllowedToCreateTenants.allowedToCreateTenants",
"formatter": "reverseBool"
}
]
Expand Down Expand Up @@ -363,14 +363,14 @@
"API": "Graph",
"URL": "https://graph.microsoft.com/beta/policies/deviceRegistrationPolicy",
"ExtractFields": [
"localAdminPassword.isEnabled"
"localAdminPassword"
],
"StoreAs": "bool",
"StoreAs": "JSON",
"FrontendFields": [
{
"name": "LAPS: Enabled",
"desc": "Check if Local Admin Password Solution is enabled",
"value": "LAPSEnabled",
"value": "LAPSEnabled.IsEnabled",
"formatter": "bool"
}
]
Expand All @@ -380,14 +380,14 @@
"API": "Graph",
"URL": "https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy",
"ExtractFields": [
"defaultUserRolePermissions.allowedToCreateSecurityGroups"
"defaultUserRolePermissions"
],
"StoreAs": "bool",
"StoreAs": "JSON",
"FrontendFields": [
{
"name": "Security Group Creation Disabled",
"desc": "Check if users are allowed to create security groups",
"value": "SecurityGroupCreationAllowed",
"value": "SecurityGroupCreationAllowed.allowedToCreateSecurityGroups",
"formatter": "reverseBool"
}
]
Expand Down

0 comments on commit 8f9d947

Please sign in to comment.