A WordPress plugin that allows organizations to use their Azure Active Directory user accounts to sign in to WordPress. Organizations with Office 365 already have Azure Active Directory (Azure AD) and can use this plugin for all of their users.
- Azure AD group membership can be used to determine access and role.
- New users can be registered on-the-fly based on their Azure AD profile.
- Can always fall back to regular username and password login.
This is a work in progress, please feel free to contact me for help. This plugin is provided as-is, with no guarantees or assurances.
In the typical flow:
- User attempts to log in to the blog (
wp-admin
). At the sign in page, they are given a link to sign in with their Azure Active Directory work or school account (e.g. an Office 365 account). - After signing in, the user is redirected back to the blog with an authorization code, which the plugin exchanges for a ID token, containing a minimal set of claims about the signed in user, and an access token, which can be used to query Azure AD for additional details about the user.
- The plugin uses the claims in the ID token to attempt to find a WordPress user with an email address or login name that matches the Azure AD user.
- If one is found, the user is authenticated in WordPress as that user account. If one is not found, the WordPress user will (optionally) be auto-provisioned on-the-fly.
- (Optional) Membership to certain groups in Azure AD can be mapped to roles in WordPress, and group membership can be used to restrict access.
The following instructions will get you started. In this case, we will be configuring the plugin to use the user roles configured in WordPress.
This plugin is not yet registered in the WordPress plugin directory (coming soon!), but you can still install it manually:
- Download the plugin using
git
or with the 'Download ZIP' link on the right. - Place the
aad-sso-wordpress
folder in your WordPress' plugin folder. Normally, this is<your-blog>/wp-content/plugins
. - Activate the plugin in the WordPress admin console, under Plugins > Installed Plugins.
With these steps, you will create an Azure AD app registration. This will provide your WordPress site with an application identity in your organization's Azure AD tenant.
-
Sign in to the Azure portal, and ensure you are signed in to the directory which has the users you'd like to allow to sign in. (This will typically be your organization's directory.) You can view which directory you're signed in to (and switch directories if needed) by clicking on your username in the upper right-hand corner.
-
Navigate to the Azure Active Directory blade, and enter the App registrations section.
-
Choose New registration.
-
Fill out the initial form as follows:
-
Name: Enter your site's name. This will be displayed to users at the Azure AD sign-in page, in the sign-in logs, and in any consent prompt users may come across.
-
Supported account types: Choose "Accounts in this organizational directory" if you only expect users from one organization to sign in to your app. Otherwise, choose "Accounts in any organizational directory" to allow users from any Azure AD tenant to sign in.
Note: This plugin does not yet support the third option, "Accounts in any organizational directory and personal Microsoft accounts".
-
Redirect URI: Leave the redirect URI type set to "Web", and provide a URL matching the format
https://<your blog url>/wp-login.php
, or whichever page your blog uses to sign in users.Note: If you're not sure what to enter here, you can leave it empty for now and come back and update this (under Azure AD > App registrations > Authentication) later. The plugin itself will tell you what URL to use.
Note: The page must invoke the
authenticate
action. (By default, this will bewp-login.php
.)
-
-
After clicking Register, enter the API permissions section.
-
Verify that the delegated permission User.Read for Microsoft Graph is already be selected. This permission is all you need if you do not require mapping Azure AD group membership to WordPress roles.
Note: If you do wish to map Azure AD groups to WordPress roles, you must also select the delegated permission Directory.Read.All (click "Add a permission" > Microsoft Graph > Delegated > Directory.Read.All).
Important: Some permissions require administrator consent before it can be used, and in some organizations, administrator consent is required for any permission. A tenant administrator can use the Grant admin consent option to grant there permissions (i.e. consent) on behalf of all users in the organization.
-
Under Certificates & secrets, create a new client secret. Provide a description and choose a duration (I recommend no longer than two years). After clicking Add, the secret value will appear. Copy it, as this is the only time it will be available.
-
Switch to the Overview section and keep the tab open, as you will need to copy some fields when configuring the plugin.
Once the plugin is activated in WordPress (step 1), update your settings from the WordPress admin console under Settings > Azure AD. Basic settings to include are:
- Display name
- The display name of the organization, used in the link on the WordPress login page which will start the Azure AD sign-in process.
- Client ID
- The Application ID. (Copy this from the Azure AD app registration's **Overview** page.)
- Client Secret
- The client secret. (You copy this from the Azure AD app registration's **Certificates & secrets** page.)
- Reply URL
- The URL that Azure AD will send the user to after authenticating. This is usually the blog's sign-in page, which is the default value. Ensure that the reply URL configured in Azure AD matches this value.
The Single Sign-on with Azure AD plugin can be configured to set different WordPress roles based on the user's membership to a set of user-defined groups. This is a great way to control who has access to the site, and under what role.
This is also configured Settings > Azure AD (from the WordPress admin console). The following fields should be included:
- Enable Azure AD group to WP role association
- Check this to enable Azure AD group-based WordPress roles.
- Default WordPress role if not in Azure AD group
- This is the default role that users will be assigned to if matching Azure AD group to WordPress roles is enabled. If this is not set, and the user authenticating does not belong to any of the groups defined, they will be denied access.
- WordPress role to Azure AD group map
- For each of the blog's WordPress roles, there is a field for the ObjectId of the Azure AD group that will be associated with that role.
Note: For the Azure AD group to WordPress role mapping to work, the app in Azure AD needs the delegated permission Directory.Read.All for Microsoft Graph. See step 5 of Register an Azure Active Directory application, above, for more details.
The different fields that can be defined in the settings JSON in Settings > Azure AD are documented in Settings.php. The following may give you an idea of the typical scenarios that may be encountered.
Users are matched by their email address in WordPress, and whichever role they have in WordPress is maintained.
Setting | Example value |
---|---|
Display name | Contoso |
Client ID | 9054eff5-bfef-4cc5-82fd-8c35534e48f9 |
Client Secret | NTY5MmE5YjMwMGY2MWQ0NjU5MzYxNjdjNzE1OGNiZmY= |
Redirect URL | https://www.example.com/blog/wp-login.php |
Field to match to UPN | Email Address |
Users are matched by their login names in WordPress and the alias portion of their Azure AD UserPrincipalName. Whichever role they have in WordPress is maintained.
Setting | Example value |
---|---|
Display name | Contoso |
Client ID | 9054eff5-bfef-4cc5-82fd-8c35534e48f9 |
Client Secret | NTY5MmE5YjMwMGY2MWQ0NjU5MzYxNjdjNzE1OGNiZmY= |
Redirect URL | https://www.example.com/blog/wp-login.php |
Field to match to UPN | Login Name |
Match on alias of the UPN | Yes |
Users are matched by their login names in WordPress, and WordPress roles are dictated by membership to a given Azure AD group. Access is denied if they are not members of any of these groups.
Setting | Example value | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Display name | Contoso | ||||||||||
Client ID | 9054eff5-bfef-4cc5-82fd-8c35534e48f9 | ||||||||||
Client Secret | NTY5MmE5YjMwMGY2MWQ0NjU5MzYxNjdjNzE1OGNiZmY= | ||||||||||
Redirect URL | https://www.example.com/blog/wp-login.php | ||||||||||
Field to match to UPN | Login Name | ||||||||||
Enable Azure AD group to WP role association | Yes | ||||||||||
Default WordPress role if not in Azure AD group | (None, deny access) | ||||||||||
WordPress role to Azure AD group map |
|
Users are matched by their login names in WordPress, and WordPress roles are dictated by membership to a given Azure AD group. If the user is not a part of any of these groups, they are assigned the Author role.
Setting | Example value | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Display name | Contoso | ||||||||||
Client ID | 9054eff5-bfef-4cc5-82fd-8c35534e48f9 | ||||||||||
Client Secret | NTY5MmE5YjMwMGY2MWQ0NjU5MzYxNjdjNzE1OGNiZmY= | ||||||||||
Reply URL | https://www.example.com/blog/wp-login.php | ||||||||||
Field to match to UPN | Login Name | ||||||||||
Enable Azure AD group to WordPress role association | Yes | ||||||||||
Default WordPress role if not in Azure AD group | Author | ||||||||||
WordPress role to Azure AD group map |
|
Users are matched by their email in WordPress, and WordPress roles are dictated by membership to a given Azure AD group. If the user doesn't exist in WordPress yet, they will be auto-provisioned. If the user is not a part of any of these groups, they are assigned the Subscriber role.
Setting | Example value | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Display name | Contoso | ||||||||||
Client ID | 9054eff5-bfef-4cc5-82fd-8c35534e48f9 | ||||||||||
Client Secret | NTY5MmE5YjMwMGY2MWQ0NjU5MzYxNjdjNzE1OGNiZmY= | ||||||||||
Reply URL | https://www.example.com/blog/wp-login.php | ||||||||||
Field to match to UPN | Email Address | ||||||||||
Enable auto-provisioning | Yes | ||||||||||
Enable Azure AD group to WP role association | Yes | ||||||||||
Default WordPress role if not in Azure AD group | Subscriber | ||||||||||
WordPress role to Azure AD group map |
|
As described above, you can map Azure AD groups to WordPress roles. Users who are members of the Azure AD group will be granted the WordPress role(s) the groups were mapped to.
There are several ways Azure AD groups can be created/managed. Some of them require the group owner/creator to be a tenant administrator, others not necessarily (depending on your organization's policy):
- Azure portal. The Azure portal (https://portal.azure.com), under Azure Active Directory > Groups > New group, allows admins and (optionally) users to create and manage groups.
- Access Panel. The Azure AD Access Panel (https://myapps.microsoft.com) provides an interface for users to create and manage groups.
- Outlook. The Outlook web interface (https://outlook.office.com/) offers users the option to create Office 365 Groups. These groups are stored in Azure AD and can be used with this plugin.
- Microsoft Teams. Creating a team in Microsoft Teams (https://teams.microsoft.com) also results in an Office 365 Group getting created.
- Azure AD PowerShell. The Azure AD PowerShell module allows admins and (optionally) users to create and manage groups. (e.g. New-AzureADGroup, and Add-AzureADGroupMember cmdlets.)
- On-premises. Many large organizations use Azure AD Connect to sync their on-premises AD to Azure AD. This usually includes all on-premises AD groups and memberships. Once these groups are synced to Azrue AD, they can be used with this plugin.
Most of the OpenID Connect endpoints and configuration (e.g. signing keys, etc.) are obtained from the OpenID Connect configuration endpoint. These values are cached for one hour, but can always be forced to re-load by adding aadsso_reload_openid_config=1
to the query string in the login page. (This shouldn't really be needed, but it has shown to be useful during development.)
If you've configured this plugin to automatically redirect to Azure AD for sign-in, but something is misconfigured, you may find yourself locked out of your site's admin dashboard.
To log in to your site without automatically redirecting to Azure AD (thus giving you an opportunity to enter a regular username and password), you can append ?aadsso_no_redirect=please
to the login URL. For example, if your login URL is https://example.com/wp-login.php
, navigating to https://example.com/wp-login.php?aadsso_no_redirect=please
will prevent any automatic redirects.
since 0.8.0
The plugin can be configured with defined constants. This allows for zero-database configuration, suitable for automated deployments, or deployments using environment variables.
Constants must be primitive/scalar values (string, number, bool, int), so if you use AADSSO_ENABLE_AAD_GROUP_TO_WP_ROLE
and AADSSO_AAD_GROUP_TO_WP_ROLE_MAP
, the value of AADSSO_AAD_GROUP_TO_WP_ROLE_MAP
must be a JSON-encoded string.
Constant Name | Type | Description | Default |
---|---|---|---|
AADSSO_ORG_DISPLAY_NAME |
string | Human-friendly name to describe your organization. | get_bloginfo('name') |
AADSSO_ORG_DOMAIN_HINT |
string | tenant or Azure AD directory id. | |
AADSSO_CLIENT_ID |
string | Azure AD-provided GUID identifying your WordPress application. | |
AADSSO_CLIENT_SECRET |
string | Azure AD-provided secret. | |
AADSSO_REDIRECT_URI |
string | URL to redirect to when a user authenticates successfully. | wp_login_url() |
AADSSO_LOGOUT_REDIRECT_URI |
string | URL to redirect to when a user logs out. | wp_login_url() |
AADSSO_ENABLE_FULL_LOGOUT |
bool | When enabled, a WordPress logout will also trigger an Azure AD logout. | false |
AADSSO_FIELD_TO_MATCH_TO_UPN |
string | WordPress field to map to Azure AD UPN | 'email' |
AADSSO_MATCH_ON_UPN_ALIAS |
type | Allow user_login to be matched on on the user portion of an email address. |
false |
AADSSO_ENABLE_AUTO_PROVISIONING |
type | true to allow WordPress to create new users for Azure AD users automatically. |
false |
AADSSO_ENABLE_AUTO_FORWARD_TO_AAD |
type | true to skip the WordPress /wp-login.php screen entirely. |
false |
AADSSO_ENABLE_AAD_GROUP_TO_WP_ROLE |
type | true to map Azure AD groups to WordPress roles automatically. |
false |
AADSSO_DEFAULT_WP_ROLE |
type | WordPress role slug for auto-provisioned users. When null , access is denied. |
null |
AADSSO_AAD_GROUP_TO_WP_ROLE_MAP |
type | Map of Azure AD Group ID to WordPress role slugs. Constant value be JSON encoded | {} |
AADSSO_GRAPH_ENDPOINT |
type | Endpoint for fetching information about users and groups. | https://graph.microsoft.com |
AADSSO_GRAPH_VERSION |
type | Version of Microsoft Graph to use. | v1.0 |
AADSSO_OPENID_CONFIGURATION_ENDPOINT |
type | .well-known endpoint to retrieve automatic OpenID configuration from. |
https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration |
AADSSO_AUTHORIZATION_ENDPOINT |
type | By default, this is detected automatically. | null |
AADSSO_END_SESSION_ENDPOINT |
type | By default, this is detected automatically. | null |
AADSSO_JWKS_URI |
type | By default, this is detected automatically. | null |
AADSSO_TOKEN_ENDPOINT |
type | By default, this is detected automatically. | null |
<?php // wp-config.php
define( 'AADSSO_ORG_DISPLAY_NAME', 'Contoso, Inc.' );
define( 'AADSSO_ORG_DOMAIN_HINT', 'contoso.com' );
define( 'AADSSO_CLIENT_ID', '98aea86f-fd6b-4f18-9d0c-e6f41966c2ba' );
define( 'AADSSO_CLIENT_SECRET', '-this-is-an-azure-ad-secret-' );
define( 'AADSSO_ENABLE_AAD_GROUP_TO_WP_ROLE', true);
define(
'AADSSO_AAD_GROUP_TO_WP_ROLE_MAP',
json_encode(
array(
'67526546-a76f-4c3e-a2de-fbb32d967501' => 'administrator',
'a0b1c2d3-4e5f-4a7b-ac9d-0e1f2a3b4c5d' => 'editor',
)
)
);
The plugin's settings can be reset with the AADSSO_RESET_SETTINGS
constant. When true
, the plugin will delete all of its options from the database. This has no effect on settings defined with constants.
### Must-Use Plugin Support
*since 0.8.0*
The plugin now supports deployment as a must-use plugin. Coupled with constants for configuration, you can rapidly provision unattended Azure AD SSO WordPress installations. To be activated, the plugin should be placed in `wp-content/mu-plugins` and a `wp-content/mu-plugins/load-aad-sso-wordpress.php` file should be created.
```php
<?php
// load aad-sso-wordpress in mu mode
require WPMU_PLUGIN_DIR . '/aad-sso-wordpress/aad-sso-wordpress.php';