Azure AD B2C
There are two task available.
Build AD(B2C) Policies
it will replace all the environment related configuration and save policies in artifect directory.
Release AD(B2C) Policies
it will create/update policies and encryption keys in azure
To know more about azure b2c custom policies, please click here.
Sample YAML file is available on github.
Installation and Configuration
1. Register An Application And Give Graph permissions
Go to azure b2c tenant
Register an application in b2c tenant
- Go to Azure Active Directory in b2c
- Click on App registrations (Legacy) *1
- Click on New application registration *2
- Fill the details
- Name - Name of the application *1
- Application type - type of the application, select Web app/ API *2
- Sign-On URL - URL of you application (you can give any url) *3
- Click on Create button *4
Now Click on Settings
- copy the Application Id for future use
Permissions
Click on Required permissions *1
- we are using Microsoft Graph API's for creation and updation so for that we need some permissions.
Click on Add *2
Click on Select an API and Select Microsoft Graph
After selecting Microsoft Graph it will ask you for Permissions
- Give Following Permissions
- Delegate
- Read and write your organization's trust framework policies
- Read your organization's policies
- Read trust framework key sets
- Read and write trust framework key sets
- Application
- Read and write your organization's trust framework policies
- Read your organization's policies
- Read trust framework key sets
- Read and write trust framework key sets
Make Sure that Microsoft graph is showing Total 8 Permissions
Click on Done *1
Click on Grant permissions *2
- this is most important step, please make sure this is done
Now we will generate secret/Key
- Select Keys *1
- Fill Details *2
- Key description
- Duration - please select Never expire
- save and copy the secret for future use
2. Build Task
- Create Build Pipeline
- Search Build AD(B2C) Policies
- Insert Details
- Policy Directory Path - Path for your policies folder in Repo
- JSON Values - Json Values
{
"Tenant":"B2CTEST",
"FacebookCliendId":"12121",
"FacebookSecret":"asa1231"
}
- Artifact Publish Path - Artifect publish path (used by next)
- Add new task (Publish Artifects)
- save and run
2. Release Task
- Create Release Pipeline
- Add Artifects (Save artifects path)
- Add Task (Search Release AD(B2C) Policies)
- Insert Details
- B2C Domain/ Tenant name - B2c Domain name
- Application Id - Application Id
- Application Secret - Application Secret
- Artifact Publish Path - Path from above task
- save and run
| |