Using Auth0 With Static Web Apps

One of my favorite features of (the now General Available) Azure Static Web Apps (SWA) is that in the Standard Tier you can now provide a custom OpenID Connect (OIDC) provider. This gives you a lot more control over who can and can’t access your app.

One of my favorite features of (the now General Available) Azure Static Web Apps (SWA) is that in the Standard Tier you can now provide a custom OpenID Connect (OIDC) provider. This gives you a lot more control over who can and can’t access your app.

In this post, I want to look at how we can use Auth0 and an OIDC provider for Static Web Apps.

For this, you’ll need an Auth0 account, so if you don’t already have one go sign up and maybe have a read of their docs, just so you’re across everything.



Creating a Static Web App

For this demo, we’ll use the React template, but what we’re covering isn’t specific to React, it’ll be applicable anywhere.

Once you’ve created your app, we’re going to need to setup a configuration file, so add staticwebapp.config.json to the repo root.

This config file is used for controlling a lot of things within our SWA, but the most important part for us is going to be the auth section. Let’s flesh out the skeleton for it:

{
    "auth": {
        "identityProviders": {
            "customOpenIdConnectProviders": {}
        }
    }
}

Great! Now it’s time to setup Auth0.



Creating an Auth0 application

Log into the Auth0 dashboard and navigate through to the Applications section of the portal:

Manage Auth0 Applications

From here, we’re going to select Create Application , give it a name and select Regular Web Applications as the application type. You might be tempted to select the SPA option, given that we’re creating a JavaScript web application, but the reason we don’t use that is that SWA’s auth isn’t handled by your application itself, it’s handled by the underlying Azure service, which is a “web application”, that then exposes the information out that you need.

Create an application



Configure your Auth0 application

With your application created, it’s time to configure it. We’ll skip the Quick Start options, as we’re really doing something more custom. Instead, head to Settings as we are going to need to provide the application with some redirect options for login/logout, so that SWA will know you’ve logged in and can unpack the basic user information.

For the Sign-in redirect URIs you will need to add https://<hostname>/.auth/login/auth0 for the Application Login URI , https://<hostname>/.auth/login/auth0/callback for Allowed Callback URLs and for Allowed Logout URLs add https://<hostname>/.auth/logout/auth0/callback. If you haven’t yet deployed to Azure, don’t worry about this step yet, we’ll do it once the SWA is created.

Quick note – the auth0 value here is going to be how we name the provider in the staticwebapp.config.json, so it can be anything you want, I just like to use the provider name so the config is easy to read.

Scroll down and click Save Changes , and it’s time to finish off our SWA config file.



Completing our settings

With our Auth0 application setup, it’s time to complete our config file so it can use it. We’ll add a new configuration under customOpenIdConnectProviders for Auth0 and it’ll contain two core pieces of information, the information on how to register the OIDC provider and some login information on how to talk to the provider.

Inside registration, we’ll add a clientIdSettingName field, which will point to an entry in the app settings that the SWA has. Next, we’ll need a clientCredential object that has clientSecretSettingName that is the entry for the OIDC client secret. Lastly, we’ll provide the openIdConnectConfiguration with a wellKnownOpenIdConfiguration endpoint that is https://<your_auth0_domain>/.well-known//openid-configuration.

The config should now look like this:

{
    "auth": {
        "identityProviders": {
            "customOpenIdConnectProviders": {
                "auth0": {
                    "registration": {
                        "clientIdSettingName": "AUTH0_ID",
                        "clientCredential": {
                            "clientSecretSettingName": "AUTH0_SECRET"
                        },
                        "openIdConnectConfiguration": {
                            "wellKnownOpenIdConfiguration": "https://aaronpowell.au.auth0.com/.well-known/openid-configuration"
                        }
                    }
                }
            }
        }
    }
}

I use AUTH0_ID and AUTH0_SECRET as the names of the items I’ll be putting into app settings.

All this information will tell SWA how to issue a request against the right application in Auth0, but we still need to tell it how to make the request and handle the response. That’s what we use the login config for. With the login config, we provide a nameClaimType, which is a fully-qualified path to the claim that we want SWA to use as the userDetails field of the user info. Generally speaking, you’ll want this to be http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name, but if there’s a custom field in your response claims you want to use, make sure you provide that. The other bit of config we need here is what scopes to request from Auth0. For SWA, you only need openid and profile as the scopes, unless you’re wanting to use a nameClaimType other than standard.

Let’s finish off our SWA config:

{
    "auth": {
        "identityProviders": {
            "customOpenIdConnectProviders": {
                "auth0": {
                    "registration": {
                        "clientIdSettingName": "AUTH0_ID",
                        "clientCredential": {
                            "clientSecretSettingName": "AUTH0_SECRET"
                        },
                        "openIdConnectConfiguration": {
                            "wellKnownOpenIdConfiguration": "https://aaronpowell.au.auth0.com/.well-known/openid-configuration"
                        }
                    },
                    "login": {
                        "nameClaimType": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
                        "scopes": ["openid", "profile"]
                    }
                }
            }
        }
    }
}

With the config ready you can create the SWA in Azure and kick off a deployment (don’t forget to update the Auth0 app with the login/logout callbacks). When the resource is created in Azure, copy the Client ID and Client secret from Auth0 and create app settings in Azure using the names in your config and the values from Auth0.



Using the provider

Once the provider is registered in the config file, it is usable just like the other providers SWA offers, with the login being /.auth/login/<provider_name>, which in this case the provider_name is auth0. The user information will then be exposed as standard to both the web and API components.

If you’re building a React application, check out my React auth helper and for the API there is a companion.



Conclusion

I really like that with the GA of Static Web Apps we are now able to use custom OIDC providers with the platform. This makes it a lot easier to have controlled user access and integration with a more complex auth story when needed. Setting this up with Auth0 only takes a few lines of config.

You can check out a full code sample on my GitHub and a live demo here (but I’m not giving you my Auth0 credentials ?).


Print Share Comment Cite Upload Translate
APA
Aaron Powell | Sciencx (2024-03-29T12:36:32+00:00) » Using Auth0 With Static Web Apps. Retrieved from https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/.
MLA
" » Using Auth0 With Static Web Apps." Aaron Powell | Sciencx - Wednesday May 12, 2021, https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/
HARVARD
Aaron Powell | Sciencx Wednesday May 12, 2021 » Using Auth0 With Static Web Apps., viewed 2024-03-29T12:36:32+00:00,<https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/>
VANCOUVER
Aaron Powell | Sciencx - » Using Auth0 With Static Web Apps. [Internet]. [Accessed 2024-03-29T12:36:32+00:00]. Available from: https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/
CHICAGO
" » Using Auth0 With Static Web Apps." Aaron Powell | Sciencx - Accessed 2024-03-29T12:36:32+00:00. https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/
IEEE
" » Using Auth0 With Static Web Apps." Aaron Powell | Sciencx [Online]. Available: https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/. [Accessed: 2024-03-29T12:36:32+00:00]
rf:citation
» Using Auth0 With Static Web Apps | Aaron Powell | Sciencx | https://www.scien.cx/2021/05/12/using-auth0-with-static-web-apps-2/ | 2024-03-29T12:36:32+00:00
https://github.com/addpipe/simple-recorderjs-demo