Skip to content

Update authentication methods to use negated state values #3615

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

Merged
merged 2 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
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
17 changes: 15 additions & 2 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
"recommendedBy": ["CIPP"]
},
{
"name": "standards.DisableVoice",
Expand All @@ -813,7 +813,7 @@
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
"recommendedBy": ["CIPP"]
},
{
"name": "standards.DisableEmail",
Expand All @@ -840,6 +840,19 @@
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.DisableQRCodePin",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "This blocks users from using QR Code Pin as an MFA method. If a user only has QR Code Pin as a MFA method, they will be unable to log in.",
"docsDescription": "Disables QR Code Pin as an MFA method for the tenant. If a user only has QR Code Pin as a MFA method, they will be unable to sign in.",
"addedComponent": [],
"label": "Disables QR Code Pin as an MFA method",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.PerUserMFA",
"cat": "Entra (AAD) Standards",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Page = () => {
type: "POST",
icon: <Check />,
url: "/api/SetAuthMethod",
data: { state: "enabled", id: "id" },
data: { state: "!enabled", id: "id" },
confirmText: "Are you sure you want to enable this policy?",
multiPost: false,
},
Expand All @@ -24,7 +24,7 @@ const Page = () => {
type: "POST",
icon: <Block />,
url: "/api/SetAuthMethod",
data: { state: "disabled", id: "id" },
data: { state: "!disabled", id: "id" },
confirmText: "Are you sure you want to disable this policy?",
multiPost: false,
},
Expand Down
Loading