Use Active Directory Federation Services for SAML
Appropriate Vault Enterprise license or HCP Vault Dedicated cluster required.
Configure your Vault instance to work with Active Directory Federation Services (AD FS) and use AD FS accounts for SAML authentication.
Before you start
- You must have Vault Enterprise or HCP Vault v1.15.5+.
- You must be running AD FS on Windows Server.
- You must have a SAML plugin enabled.
- You must have a Vault admin token. If you do not have a valid admin
token, you can generate a new token in the Vault GUI or using
vault token create
with the Vault CLI.
Step 1: Enable the SAML authN method for Vault
Set the
VAULT_ADDR
environment variable to your Vault instance URL. For example:Set the
VAULT_TOKEN
environment variable with your admin token:Enable the SAML plugin. Use the
-namespace
flag to enable the plugin under a specific namespace. For example:
Step 2: Create a new relying party trust in AD
Open your Windows Server UI.
Go to the Server Manager screen.
Click Tools and select AD FS Management.
Right-click Relying Party Trusts and select Add Relying Party Trust....
Follow the prompts to create a new party trust with the following settings:
Option Setting Claims aware checked Enter data about relying party manually checked Display name "Vault" Certificates None Enable support for the SAML 2.0 WebSSO protocol checked SAML callback URL Callback endpoint for your SAML plugin Relying party trust identifier Any meaningful, unique string. For example "VaultIdentifier" Access control policy Any valid policy or Permit everyone
Configure claims issuance policy for this application checked
Tip
The callback endpoint for your SAML plugin is:
https://${VAULT_ADDRESS}/v1/<NAMESPACE>/<MOUNT_PATH>/auth/<PLUGIN_NAME>/callback
For example, if you mounted the plugin under the ns_admin
namespace on the
path org/security
, the callback endpoint URL would be:
https://${VAULT_ADDRESS}/v1/ns_admin/auth/org/security/saml/callback
Step 3: Configure the claim issuance policy in AD
Open your Windows Server UI.
Go to the Server Manager screen.
Click Tools and select AD FS Management.
Right-click your new Relying Party Trust entry and select Edit Claim Issuance Policy....
Click Add Rule... and follow the prompts to create a new Transform Claim Rule with the following settings:
Option Setting Send LDAP Attributes as Claims selected Rule name Any meaningful string (e.g., "Vault SAML Claims") Attribute store Active Directory
.Complete the LDAP attribute array with the following settings:
LDAP attribute Outgoing claim type E-Mail-Addresses
Name ID
E-Mail-Addresses
E-Mail Address
Token-Groups - Unqualified Names
groups
orGroup
Step 4: Update the SAML signature in AD
Open a PowerShell terminal on your Windows server.
Set the SAML signature for your relying party trust identifier to
false
:For example:
Step 5: Create a default AD FS role in Vault
Use the Vault CLI to create a default role for users authenticating with AD FS where:
SAML_PLUGIN_PATH
is the full path (<NAMESPACE>/MOUNT_PATH/NAME
) to your SAML plugin.VAULT_ROLE
is the name of your new AD FS role. For example,adfs-default
.DOMAIN_LIST
is a comma separated list of target domains in Active Directory. For example:*@example.com,*@ext.example.com
.GROUP_ATTRIBUTES_REF
is:groups
if your LDAP token group isgroups
http://schemas.xmlsoap.org/claims/Group
if your LDAP token group isGroup
AD_GROUP_LIST
is a comma separated list of Active Directory groups that will authenticate with SAML. For example:VaultAdmin,VaultUser
.
For example:
Step 6: Configure the SAML plugin in Vault
Use the Vault CLI to finish configuring the SAML plugin where:
SAML_PLUGIN_PATH
is the full path to your SAML plugin:<NAMESPACE>/auth/<MOUNT_PATH>/<PLUGIN_NAME>
.VAULT_ROLE
is the name of your new AD FS role in Vault.TRUST_IDENTIFIER
is the ID of your new relying party trust in AD FS.SAML_CALLBACK_URL
is the callback endpoint for your SAML plugin:http://${VAULT_ADDR}/<NAMESPACE>/auth/<MOUNT_PATH>/<PLUGIN_NAME>/callback
.ADFS_URL
is the discovery URL for your AD FS instance.METADATA_FILE_PATH
is the path on your AD FS instance to the federation metadata file.
For example: