Next-14-Azure-Auth is a starter template for building secure Next.js v14+ Tailwind CSS apps with Microsoft Entra ID authentication. It uses the Next-Auth.js Library for authentication and the Microsoft Graph Client Library for fetching user data.
Before you begin, ensure you have the following installed and set up:
- Node.js (v18.17+) & npm.
- Git for version control.
- An Azure account with app registration permissions in Microsoft Entra ID.
Follow these steps to configure Microsoft Entra ID for authentication:
- Go to the Azure portal.
- Navigate to Microsoft Entra ID > App registrations > New registration.
- Enter a name for your application (e.g.,
Next-14-Azure-Auth
). - Under Supported account types, select Accounts in this organizational directory only.
- In the Redirect URI field, enter:
http://localhost:3000/api/auth/callback/microsoft-entra-id
- Click Register to create the application.
- Go to the app's Overview page:
- Copy the Application (client) ID and add it to your
.env
file asAUTH_MICROSOFT_ENTRA_ID_ID
. - Copy the Directory (tenant) ID and add it to your
.env
file asAUTH_MICROSOFT_ENTRA_ID_ISSUER
.
- Copy the Application (client) ID and add it to your
- Navigate to Certificates & secrets:
- Under Client secrets, click New client secret.
- Add a description (e.g.,
Next-14-Azure-Auth Secret
) and set an expiration period. - Copy the generated secret value and add it to your
.env
file asAUTH_MICROSOFT_ENTRA_ID_SECRET
.
- Go to API permissions > Add a permission.
- Select Microsoft Graph > Delegated permissions.
- Add the following permissions:
User.Read
- Access user details.openid
- OpenID Connect authentication.email
- Access email addresses.profile
- Access basic profile information.offline_access
- Enable refresh tokens.
- Click Grant admin consent for [Your Organization] to apply the permissions.
- Navigate to Azure Active Directory > Enterprise applications.
- Find your application by name and select it.
- Under Users and groups, assign users or groups that should have access to the application.
-
Clone the Repository
git clone https://github.com/matt-wigg/next-14-azure-auth.git cd next-14-azure-auth
-
Install Dependencies
npm install
-
Set Up Environment Variables
Create a (or edit the)
.env
file in the root directory:AUTH_SECRET=your_auth_secret AUTH_MICROSOFT_ENTRA_ID_ID=your_azure_client_id AUTH_MICROSOFT_ENTRA_ID_SECRET=your_azure_client_secret AUTH_MICROSOFT_ENTRA_ID_ISSUER=your_azure_tenant_id
To generate the
AUTH_SECRET
, run:openssl rand -base64 32
-
Start the Development Server
npm run dev
Your application will be available at http://localhost:3000.
Important
This application is configured for local development. Ensure your .env
file is properly set up before proceeding.
- Visit http://localhost:3000 in your browser.
- Click the "Sign in with Microsoft Entra ID" button to initiate the authentication process.
- You will be redirected to the Microsoft Entra ID login page.
- After successful login, you will be redirected back to the application, where you can see your user profile information.
- You can sign out by clicking the "Sign out" button.
Category | File/Directory | Description |
---|---|---|
Authentication | src/app/api/[...nextauth]/route.ts |
NextAuth.js routes. Customize providers, callbacks, or session behavior. |
src/services/msGraph.ts |
Microsoft Graph API helpers for fetching user data. | |
src/services/msEntraId.ts |
Microsoft Entra ID-specific authentication logic. | |
src/config/auth.config.ts |
Authentication configuration (e.g., provider settings). | |
src/middleware.ts |
Middleware for authentication and route protection. | |
Components | src/components/sign-in-form.tsx |
Sign-in form UI. |
src/components/sign-out-form.tsx |
Sign-out button UI. | |
Configuration | src/config/routes.config.ts |
Route access settings for authenticated/unauthenticated pages. |
src/config/auth.config.ts |
Authentication configuration (e.g., provider settings). | |
.env / .env.local |
Environment variables for sensitive credentials. | |
Styling | tailwind.config.ts |
Tailwind CSS configuration. |
Types | src/types/ |
TypeScript definitions for authentication and middleware. |
Please refer to the Next.js deployment documentation for instructions on deploying your application to various platforms.