You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Microsoft Entra ID (formely Azure Active Directory) is an enterprise identity service that provides single sign-on, multifactor authentication, and conditional access to guard against 99.9 percent of cybersecurity attacks.
9
+
Microsoft Entra ID (formerly Azure Active Directory) is an enterprise identity service that provides single sign-on, multifactor authentication, and conditional access to guard against 99.9 percent of cybersecurity attacks.
10
10
11
11
## Configuration
12
12
@@ -28,7 +28,7 @@ Delete an app in azure AD. Requires the Application.ReadWrite.OwnedBy or Applica
Reset a user's password. You will need UserAuthenticationMethod.ReadWrite.All deleguated permission. And to disable the MFA authentication in your azure AD
125
+
Reset a user's password (deprecated). You will need UserAuthenticationMethod.ReadWrite.All delegated permission. And to disable the MFA authentication in your azure AD
126
126
127
127
**Arguments**
128
128
@@ -132,6 +132,27 @@ Reset a user's password. You will need UserAuthenticationMethod.ReadWrite.All de
132
132
|`userPrincipalName`|`string`| Principal Name of the user. id or userPrincipalName should be specified. |
133
133
|`userNewPassword`|`string`| New password, required to reset the old one of course. |
134
134
135
+
### Reset User Password
136
+
137
+
Resets a user's password by patching passwordProfile. Requires User-PasswordProfile.ReadWrite.All (Application), admin consent and appropriate Entra role assignment
|`id`|`string`| ID of the user. Only one of id or userPrincipalName should be specified. |
144
+
|`userPrincipalName`|`string`| Principal Name of the user. Only one of id or userPrincipalName should be specified. |
145
+
|`userNewPassword`|`['string', 'null']`| New password, to reset the old one. Let empty to generate a random password. If not empty, should comply with https://learn.microsoft.com/en-us/entra/identity/authentication/concept-password-ban-bad-combined-policy|
146
+
|`forceChangePasswordNextSignIn`|`boolean`| Determines if the user must change their password on the next sign-in. |
147
+
|`forceChangePasswordNextSignInWithMfa`|`boolean`| Determines if the user must perform a multifactor authentication (MFA) before being forced to change their password. |
0 commit comments