Skip to content

Commit 45b4f6a

Browse files
authored
Merge pull request #229583 from MicrosoftDocs/main
3/06 AM Publish
2 parents 403de20 + 1dbc4a0 commit 45b4f6a

File tree

64 files changed

+1302
-427
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1302
-427
lines changed

articles/active-directory-b2c/whats-new-docs.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "What's new in Azure Active Directory business-to-customer (B2C)"
33
description: "New and updated documentation for the Azure Active Directory business-to-customer (B2C)."
4-
ms.date: 03/01/2023
4+
ms.date: 03/06/2023
55
ms.service: active-directory
66
ms.subservice: B2C
77
ms.topic: reference
@@ -30,6 +30,20 @@ Welcome to what's new in Azure Active Directory B2C documentation. This article
3030

3131
- [Migrate applications using header-based authentication to Azure Active Directory B2C with Grit's app proxy](partner-grit-app-proxy.md)
3232
- [Configure Grit's biometric authentication with Azure Active Directory B2C](partner-grit-authentication.md)
33+
- [Create and run your own custom policies in Azure Active Directory B2C](custom-policies-series-overview.md)
34+
- [Write your first Azure Active Directory B2C custom policy - Hello World!](custom-policies-series-hello-world.md)
35+
- [Collect and manipulate user inputs by using Azure AD B2C custom policy](custom-policies-series-collect-user-input.md)
36+
- [Validate user inputs by using Azure Active Directory B2C custom policy](custom-policies-series-validate-user-input.md)
37+
- [Create branching in user journey by using Azure Active Directory B2C custom policy](custom-policies-series-branch-user-journey.md)
38+
- [Validate custom policy files by using TrustFrameworkPolicy schema](custom-policies-series-install-xml-extensions.md)
39+
- [Call a REST API by using Azure Active Directory B2C custom policy](custom-policies-series-call-rest-api.md)
40+
- [Create and read a user account by using Azure Active Directory B2C custom policy](custom-policies-series-store-user.md)
41+
- [Set up a sign-up and sign-in flow by using Azure Active Directory B2C custom policy](custom-policies-series-sign-up-or-sign-in.md)
42+
- [Set up a sign-up and sign-in flow with a social account by using Azure Active Directory B2C custom policy](custom-policies-series-sign-up-or-sign-in-federation.md)
43+
- [Manage administrator accounts in Azure Active Directory B2C](tenant-management-manage-administrator.md)
44+
- [Manage emergency access accounts in Azure Active Directory B2C](tenant-management-emergency-access-account.md)
45+
- [Review tenant creation permission in Azure Active Directory B2C](tenant-management-check-tenant-creation-permission.md)
46+
- [Find tenant name and tenant ID in Azure Active Directory B2C](tenant-management-read-tenant-name.md)
3347

3448
### Updated articles
3549

articles/active-directory-domain-services/password-policy.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ ms.service: active-directory
1010
ms.subservice: domain-services
1111
ms.workload: identity
1212
ms.topic: how-to
13-
ms.date: 01/29/2023
13+
ms.date: 03/06/2023
1414
ms.author: justinha
1515

1616
---
1717
# Password and account lockout policies on Azure Active Directory Domain Services managed domains
1818

19-
To manage user security in Azure Active Directory Domain Services (Azure AD DS), you can define fine-grained password policies that control account lockout settings or minimum password length and complexity. A default fine grained password policy is created and applied to all users in an Azure AD DS managed domain. To provide granular control and meet specific business or compliance needs, additional policies can be created and applied to specific groups of users.
19+
To manage user security in Azure Active Directory Domain Services (Azure AD DS), you can define fine-grained password policies that control account lockout settings or minimum password length and complexity. A default fine grained password policy is created and applied to all users in an Azure AD DS managed domain. To provide granular control and meet specific business or compliance needs, additional policies can be created and applied to specific users or groups.
2020

2121
This article shows you how to create and configure a fine-grained password policy in Azure AD DS using the Active Directory Administrative Center.
2222

@@ -110,15 +110,15 @@ To create a custom password policy, you use the Active Directory Administrative
110110

111111
![Select the users and groups to apply the password policy to](./media/password-policy/fgpp-applies-to.png)
112112

113-
1. Password policies can only be applied to groups. In the **Locations** dialog, expand the domain name, such as *aaddscontoso.com*, then select an OU, such as **AADDC Users**. If you have a custom OU that contains a group of users you wish to apply, select that OU.
113+
1. In the **Locations** dialog, expand the domain name, such as *aaddscontoso.com*, then select an OU, such as **AADDC Users**. If you have a custom OU that contains a group of users you wish to apply, select that OU.
114114

115115
![Select the OU that the group belongs to](./media/password-policy/fgpp-container.png)
116116

117-
1. Type the name of the group you wish to apply the policy to, then select **Check Names** to validate that the group exists.
117+
1. Type the name of the user or group you wish to apply the policy to. Select **Check Names** to validate the account.
118118

119119
![Search for and select the group to apply FGPP](./media/password-policy/fgpp-apply-group.png)
120120

121-
1. With the name of the group you selected now displayed in **Directly Applies To** section, select **OK** to save your custom password policy.
121+
1. Click **OK** to save your custom password policy.
122122

123123
## Next steps
124124

articles/active-directory/authentication/howto-mfa-getstarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about deployment considerations and strategy for successful i
44
ms.service: active-directory
55
ms.subservice: authentication
66
ms.topic: how-to
7-
ms.date: 01/29/2023
7+
ms.date: 03/06/2023
88
ms.author: justinha
99
author: justinha
1010
manager: amycolannino
@@ -187,7 +187,7 @@ If the user does not have a backup method available, you can:
187187

188188
- Provide them a Temporary Access Pass so that they can manage their own authentication methods. You can also provide a Temporary Access Pass to enable temporary access to resources.
189189
- Update their methods as an administrator. To do so, select the user in the Azure portal, then select Authentication methods and update their methods.
190-
User communications
190+
191191

192192
## Plan integration with on-premises systems
193193

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
---
2+
title: 'Tutorial: Configure Acunetix 360 for automatic user provisioning with Azure Active Directory | Microsoft Docs'
3+
description: Learn how to automatically provision and de-provision user accounts from Azure AD to Acunetix 360.
4+
services: active-directory
5+
author: twimmers
6+
writer: twimmers
7+
manager: beatrizd
8+
ms.assetid: cb0c2e2c-ade9-4e6b-9ce5-d7c7d2743d90
9+
ms.service: active-directory
10+
ms.subservice: saas-app-tutorial
11+
ms.workload: identity
12+
ms.topic: tutorial
13+
ms.date: 03/06/2023
14+
ms.author: thwimmer
15+
---
16+
17+
# Tutorial: Configure Acunetix 360 for automatic user provisioning
18+
19+
This tutorial describes the steps you need to perform in both Acunetix 360 and Azure Active Directory (Azure AD) to configure automatic user provisioning. When configured, Azure AD automatically provisions and de-provisions users and groups to [Acunetix 360](https://www.acunetix.com/) using the Azure AD Provisioning service. For important details on what this service does, how it works, and frequently asked questions, see [Automate user provisioning and deprovisioning to SaaS applications with Azure Active Directory](../app-provisioning/user-provisioning.md).
20+
21+
22+
## Supported capabilities
23+
> [!div class="checklist"]
24+
> * Create users in Acunetix 360.
25+
> * Remove users in Acunetix 360 when they do not require access anymore.
26+
> * Keep user attributes synchronized between Azure AD and Acunetix 360.
27+
> * Provision groups and group memberships in Acunetix 360
28+
> * [Single sign-on](acunetix-360-tutorial.md) to Acunetix 360 (recommended).
29+
30+
## Prerequisites
31+
32+
The scenario outlined in this tutorial assumes that you already have the following prerequisites:
33+
34+
* [An Azure AD tenant](../develop/quickstart-create-new-tenant.md)
35+
* A user account in Azure AD with [permission](../roles/permissions-reference.md) to configure provisioning (for example, Application Administrator, Cloud Application administrator, Application Owner, or Global Administrator).
36+
* An administrator account with Acunetix 360.
37+
38+
## Step 1. Plan your provisioning deployment
39+
1. Learn about [how the provisioning service works](../app-provisioning/user-provisioning.md).
40+
1. Determine who will be in [scope for provisioning](../app-provisioning/define-conditional-rules-for-provisioning-user-accounts.md).
41+
1. Determine what data to [map between Azure AD and Acunetix 360](../app-provisioning/customize-application-attributes.md).
42+
43+
## Step 2. Configure Acunetix 360 to support provisioning with Azure AD
44+
45+
1. Log in to [Acunetix 360 admin console](https://online.acunetix360.com/).
46+
1. Click on profile logo and navigate to **API Settings**.
47+
1. Enter your **Current Password** and then click on **Submit**.
48+
1. Copy and save the **Token**.This value will be entered in the **Secret Token** field in the Provisioning tab of your Acunetix 360 application in the Azure portal.
49+
>[!NOTE]
50+
>Click on **Reset API Token** in order to reset the Token.
51+
1. And `https://online.acunetix360.com/scim/v2` will be entered in the **Tenant Url** field in the Provisioning tab of your Acunetix 360 application in the Azure portal.
52+
53+
54+
55+
## Step 3. Add Acunetix 360 from the Azure AD application gallery
56+
57+
Add Acunetix 360 from the Azure AD application gallery to start managing provisioning to Acunetix 360. If you have previously setup Acunetix 360 for SSO you can use the same application. However it's recommended that you create a separate app when testing out the integration initially. Learn more about adding an application from the gallery [here](../manage-apps/add-application-portal.md).
58+
59+
## Step 4. Define who will be in scope for provisioning
60+
61+
The Azure AD provisioning service allows you to scope who will be provisioned based on assignment to the application and or based on attributes of the user / group. If you choose to scope who will be provisioned to your app based on assignment, you can use the following [steps](../manage-apps/assign-user-or-group-access-portal.md) to assign users and groups to the application. If you choose to scope who will be provisioned based solely on attributes of the user or group, you can use a scoping filter as described [here](../app-provisioning/define-conditional-rules-for-provisioning-user-accounts.md).
62+
63+
* Start small. Test with a small set of users and groups before rolling out to everyone. When scope for provisioning is set to assigned users and groups, you can control this by assigning one or two users or groups to the app. When scope is set to all users and groups, you can specify an [attribute based scoping filter](../app-provisioning/define-conditional-rules-for-provisioning-user-accounts.md).
64+
65+
* If you need more roles, you can [update the application manifest](../develop/howto-add-app-roles-in-azure-ad-apps.md) to add new roles.
66+
67+
68+
## Step 5. Configure automatic user provisioning to Acunetix 360
69+
70+
This section guides you through the steps to configure the Azure AD provisioning service to create, update, and disable users and/or groups in TestApp based on user and/or group assignments in Azure AD.
71+
72+
### To configure automatic user provisioning for Acunetix 360 in Azure AD:
73+
74+
1. Sign in to the [Azure portal](https://portal.azure.com). Select **Enterprise Applications**, then select **All applications**.
75+
76+
![Screenshot of Enterprise applications blade.](common/enterprise-applications.png)
77+
78+
1. In the applications list, select **Acunetix 360**.
79+
80+
![Screenshot of the Acunetix 360 link in the Applications list.](common/all-applications.png)
81+
82+
1. Select the **Provisioning** tab.
83+
84+
![Screenshot of Provisioning tab.](common/provisioning.png)
85+
86+
1. Set the **Provisioning Mode** to **Automatic**.
87+
88+
![Screenshot of Provisioning tab automatic.](common/provisioning-automatic.png)
89+
90+
1. Under the **Admin Credentials** section, input your Acunetix 360 Tenant URL and Secret Token. Click **Test Connection** to ensure Azure AD can connect to Acunetix 360. If the connection fails, ensure your Acunetix 360 account has Admin permissions and try again.
91+
92+
![Screenshot of Token.](common/provisioning-testconnection-tenanturltoken.png)
93+
94+
1. In the **Notification Email** field, enter the email address of a person or group who should receive the provisioning error notifications and select the **Send an email notification when a failure occurs** check box.
95+
96+
![Screenshot of Notification Email.](common/provisioning-notification-email.png)
97+
98+
1. Select **Save**.
99+
100+
1. Under the **Mappings** section, select **Synchronize Azure Active Directory Users to Acunetix 360**.
101+
102+
1. Review the user attributes that are synchronized from Azure AD to Acunetix 360 in the **Attribute-Mapping** section. The attributes selected as **Matching** properties are used to match the user accounts in Acunetix 360 for update operations. If you choose to change the [matching target attribute](../app-provisioning/customize-application-attributes.md), you'll need to ensure that the Acunetix 360 API supports filtering users based on that attribute. Select the **Save** button to commit any changes.
103+
104+
|Attribute|Type|Supported for filtering|Required by Acunetix 360|
105+
|---|---|---|---|
106+
|userName|String|✓|✓
107+
|active|Boolean||✓
108+
|emails[type eq "work"].value|String||✓
109+
|name.givenName|String||✓
110+
|name.familyName|String||✓
111+
|phoneNumbers[type eq "mobile"].value|String||
112+
113+
1. Under the **Mappings** section, select **Synchronize Azure Active Directory Groups to Acunetix 360**.
114+
115+
1. Review the group attributes that are synchronized from Azure AD to Acunetix 360 in the **Attribute-Mapping** section. The attributes selected as **Matching** properties are used to match the groups in Acunetix 360 for update operations. Select the **Save** button to commit any changes.
116+
117+
|Attribute|Type|Supported for filtering|Required by Acunetix 360|
118+
|---|---|---|---|
119+
|displayName|String|✓|✓
120+
|members|Reference||
121+
122+
1. To configure scoping filters, refer to the following instructions provided in the [Scoping filter tutorial](../app-provisioning/define-conditional-rules-for-provisioning-user-accounts.md).
123+
124+
1. To enable the Azure AD provisioning service for Acunetix 360, change the **Provisioning Status** to **On** in the **Settings** section.
125+
126+
![Screenshot of Provisioning Status Toggled On.](common/provisioning-toggle-on.png)
127+
128+
1. Define the users and/or groups that you would like to provision to Acunetix 360 by choosing the desired values in **Scope** in the **Settings** section.
129+
130+
![Screenshot of Provisioning Scope.](common/provisioning-scope.png)
131+
132+
1. When you're ready to provision, click **Save**.
133+
134+
![Screenshot of Saving Provisioning Configuration.](common/provisioning-configuration-save.png)
135+
136+
This operation starts the initial synchronization cycle of all users and groups defined in **Scope** in the **Settings** section. The initial cycle takes longer to perform than subsequent cycles, which occur approximately every 40 minutes as long as the Azure AD provisioning service is running.
137+
138+
## Step 6. Monitor your deployment
139+
Once you've configured provisioning, use the following resources to monitor your deployment:
140+
141+
* Use the [provisioning logs](../reports-monitoring/concept-provisioning-logs.md) to determine which users have been provisioned successfully or unsuccessfully
142+
* Check the [progress bar](../app-provisioning/application-provisioning-when-will-provisioning-finish-specific-user.md) to see the status of the provisioning cycle and how close it's to completion
143+
* If the provisioning configuration seems to be in an unhealthy state, the application goes into quarantine. Learn more about quarantine states [here](../app-provisioning/application-provisioning-quarantine-status.md).
144+
145+
## More resources
146+
147+
* [Managing user account provisioning for Enterprise Apps](../app-provisioning/configure-automatic-user-provisioning-portal.md)
148+
* [What is application access and single sign-on with Azure Active Directory?](../manage-apps/what-is-single-sign-on.md)
149+
150+
## Next steps
151+
152+
* [Learn how to review logs and get reports on provisioning activity](../app-provisioning/check-status-user-account-provisioning.md)

0 commit comments

Comments
 (0)