Azure Static Web Apps provides managed authentication that uses provider registrations managed by Azure. To enable more flexibility over the registration, you can override the defaults with a custom registration.
Custom authentication also allows you to configure custom providers that support OpenID Connect. This configuration allows the registration of multiple external providers.
Using any custom registrations disables all preconfigured providers.
Note
Custom authentication is only available in the Azure Static Web Apps Standard plan.
Configure a custom identity provider
Custom identity providers are configured in the auth section of the configuration file.
To avoid putting secrets in source control, the configuration looks into application settings for a matching name in the configuration file. You might also choose to store your secrets in Azure Key Vault.
To create the registration, begin by creating the following application settings:
Setting Name
Value
AZURE_CLIENT_ID
The Application (client) ID for the Microsoft Entra app registration.
AZURE_CLIENT_SECRET_APP_SETTING_NAME
The name of the application setting that holds the client secret for the Microsoft Entra app registration.
Next, use the following sample to configure the provider in the configuration file.
Microsoft Entra providers are available in two different versions. Version 1 explicitly defines the userDetailsClaim, which allows the payload to return user information. By contrast, version 2 returns user information by default, and is designated by v2.0 in the openIdIssuer URL.
While the configuration section for Microsoft Entra ID is azureActiveDirectory, the platform aliases this to aad in the URL's for login, logout and purging user information. Refer to the authentication and authorization section for more information.
Custom certificate
Use the following steps to add a custom certificate to your Microsoft Entra ID app registration.
If it isn't already, upload your certificate to a Microsoft Key Vault.
Add a managed identity on your Static Web App.
For user assigned managed identities, set keyVaultReferenceIdentity property on your static site object to the resourceId of the user assigned managed identity.
Skip this step if your managed identity is system assigned.
Grant the managed identity the following access policies:
Secrets: Get/List
Certificates: Get/List
Update the auth config section of the azureActiveDirectory configuration section with a clientSecretCertificateKeyVaultReference value as shown in the following example:
Make sure to replace your values in for the placeholders surrounded by <>.
In the secret URI, specify the key vault name and certificate name. If you want to pin to a version, include the certificate version, otherwise omit the version to allow the runtime to select the newest version of the certificate.
Set clientSecretCertificateThumbprint equal to * to always pull the latest version of the certificates thumbprint.
To create the registration, begin by creating the following application settings:
Setting Name
Value
APPLE_CLIENT_ID
The Apple client ID.
APPLE_CLIENT_SECRET_APP_SETTING_NAME
The name of the application setting that holds the Apple client secret.
Next, use the following sample to configure the provider in the configuration file.
You can configure Azure Static Web Apps to use a custom authentication provider that adheres to the OpenID Connect (OIDC) specification. The following steps are required to use a custom OIDC provider.
One or more OIDC providers are allowed.
Each provider must have a unique name in the configuration.
Only one provider can serve as the default redirect target.
Register your application with the identity provider
You're required to register your application's details with an identity provider. Check with the provider regarding the steps needed to generate a client ID and client secret for your application.
Once the application is registered with the identity provider, create the following application secrets in the application settings of the Static Web App:
Setting Name
Value
MY_PROVIDER_CLIENT_ID
The client ID generated by the authentication provider for your static web app.
MY_PROVIDER_CLIENT_SECRET_APP_SETTING_NAME
The name of the application setting that holds the client secret generated by the authentication provider's custom registration for your static web app.
If you register other providers, each one needs an associated client ID and client secret store in application settings.
Important
Application secrets are sensitive security credentials. Do not share this secret with anyone, distribute it within a client application, or check into source control.
Once you have the registration credentials, use the following steps to create a custom registration.
You need the OpenID Connect metadata for the provider. This information is often exposed via a configuration metadata document, which is the provider's Issuer URL suffixed with /.well-known/openid-configuration. Gather this configuration URL.
Add an auth section of the configuration file with a configuration block for the OIDC providers, and your provider definition.
The provider name, myProvider in this example, is the unique identifier used by Azure Static Web Apps.
Make sure to replace <PROVIDER_ISSUER_URL> with the path to the Issuer URL of the provider.
The login object allows you to provide values for: custom scopes, log in parameters, or custom claims.
Authentication callbacks
Identity providers require a redirect URL to complete the login or logout request. Most providers require that you add the callback URLs to an allowlist. The following endpoints are available as redirect destinations.
If you're using Microsoft Entra ID, use aad as the value for the <PROVIDER_NAME_IN_CONFIG> placeholder.
Note
These URLs are provided by Azure Static Web Apps to receive the response from the authentication provider, you don't need to create pages at these routes.
Login, logout, and user details
To use a custom identity provider, use the following URL patterns.
Action
Pattern
Login
/.auth/login/<PROVIDER_NAME_IN_CONFIG>
Logout
/.auth/logout
User details
/.auth/me
Purge user details
/.auth/purge/<PROVIDER_NAME_IN_CONFIG>
If you're using Microsoft Entra ID, use aad as the value for the <PROVIDER_NAME_IN_CONFIG> placeholder.
Manage roles
Every user who accesses a static web app belongs to one or more roles. There are two built-in roles that users can belong to:
anonymous: All users automatically belong to the anonymous role.
authenticated: All users who are signed in belong to the authenticated role.
Beyond the built-in roles, you can assign custom roles to users, and reference them in the staticwebapp.config.json file.
To add a user to a role, you generate invitations that allow you to associate users to specific roles. Roles are defined and maintained in the staticwebapp.config.json file.
Create an invitation
Invitations are specific to individual authorization-providers, so consider the needs of your app as you select which providers to support. Some providers expose a user's email address, while others only provide the site's username.
Authorization provider
Exposes
Microsoft Entra ID
email address
GitHub
username
X
username
Use the following steps to create an invitation.
Go to a Static Web Apps resource in the Azure portal.
Under Settings, select Role Management.
Select Invite.
Select an Authorization provider from the list of options.
Add either the username or email address of the recipient in the Invitee details box.
For GitHub and X, enter the username. For all others, enter the recipient's email address.
Select the domain of your static site from the Domain drop-down menu.
The domain you select is the domain that appears in the invitation. If you have a custom domain associated with your site, choose the custom domain.
Add a comma-separated list of role names in the Role box.
Enter the maximum number of hours you want the invitation to remain valid.
The maximum possible limit is 168 hours, which is seven days.
Select Generate.
Copy the link from the Invite link box.
Email the invitation link to the user that you're granting access to.
When the user selects the link in the invitation, they're prompted to sign in with their corresponding account. Once successfully signed in, the user is associated with the selected roles.
Caution
Make sure your route rules don't conflict with your selected authentication providers. Blocking a provider with a route rule prevents users from accepting invitations.
Update role assignments
Go to a Static Web Apps resource in the Azure portal.
Under Settings, select Role Management.
Select the user in the list.
Edit the list of roles in the Role box.
Select Update.
Remove user
Go to a Static Web Apps resource in the Azure portal.
Under Settings, select Role Management.
Locate the user in the list.
Check the checkbox on the user's row.
Select Delete.
As you remove a user, keep in mind the following items:
Removing a user invalidates their permissions.
Worldwide propagation might take a few minutes.
If the user is added back to the app, the userId changes.
Instead of using the built-in invitations system, you can use a serverless function to programmatically assign roles to users when they sign in.
To assign custom roles in a function, you can define an API function that is automatically called after each time a user successfully authenticates with an identity provider. The function is passed the user's information from the provider. It must return a list of custom roles that are assigned to the user.
Example uses of this function include:
Query a database to determine which roles a user should be assigned
Call the Microsoft Graph API to determine a user's roles based on their Active Directory group membership
Determine a user's roles based on claims returned by the identity provider
Note
The ability to assign roles via a function is only available when custom authentication is configured.
When this feature is enabled, any roles assigned via the built-in invitations system are ignored.
Configure a function for assigning roles
To configure Static Web Apps to use an API function as the role assignment function, add a rolesSource property to the auth section of your app's configuration file. The value of the rolesSource property is the path to the API function.
Once configured, the role assignment function can no longer be accessed by external HTTP requests.
Create a function for assigning roles
After you define the rolesSource property in your app's configuration, add an API function in your static web app at the specified path. You can use a managed function app or bring your own function app.
Each time a user successfully authenticates with an identity provider, the POST method calls the specified function. The function passes a JSON object in the request body that contains the user's information from the provider. For some identity providers, the user information also includes an accessToken that the function can use to make API calls using the user's identity.
See the following example payload from Microsoft Entra ID:
The function can use the user's information to determine which roles to assign to the user. It must return an HTTP 200 response with a JSON body containing a list of custom role names to assign to the user.
For example, to assign the user to the Reader and Contributor roles, return the following response:
{
"roles": [
"Reader",
"Contributor"
]
}
If you don't want to assign any other roles to the user, return an empty roles array.
Publish an Angular, React, Svelte, or Vue JavaScript app with API and authentication using Azure Static Web Apps and Azure Functions. Deploy your code from GitHub to a staging site using preview URLs.