Skip to content

Commit b13afc8

Browse files
authored
chore: Update variable names for the Azure AD B2C example (#11079)
1 parent e443d31 commit b13afc8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/pages/getting-started/providers/azure-ad-b2c.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import { Code } from "@/components/Code"
1818
### Environment Variables
1919

2020
```
21-
AUTH_AZURE_AD_ID
22-
AUTH_AZURE_AD_SECRET
23-
AUTH_AZURE_AD_ISSUER
21+
AUTH_AZURE_AD_B2C_ID
22+
AUTH_AZURE_AD_B2C_SECRET
23+
AUTH_AZURE_AD_B2C_ISSUER
2424
```
2525

2626
### Configuration
@@ -34,9 +34,9 @@ import AzureADB2C from "next-auth/providers/azure-ad-b2c";
3434

3535
export const { handlers, auth, signIn, signOut } = NextAuth({
3636
providers: [AzureADB2C({
37-
clientId: AUTH_AZURE_AD_CLIENT_ID
38-
clientSecret: AUTH_AZURE_AD_CLIENT_SECRET
39-
issuer: AUTH_AZURE_AD_ISSUER
37+
clientId: AUTH_AZURE_AD_B2C_CLIENT_ID
38+
clientSecret: AUTH_AZURE_AD_B2C_CLIENT_SECRET
39+
issuer: AUTH_AZURE_AD_B2C_ISSUER
4040
})]
4141
});
4242
```

0 commit comments

Comments
 (0)