Skip to content

Commit 60d69d9

Browse files
author
JiayueHu
authored
Merge pull request #208278 from MicrosoftDocs/main
Daily Publishing 8/17 10AM
2 parents 4d1e9fa + cd53666 commit 60d69d9

File tree

644 files changed

+1991
-1254
lines changed

Some content is hidden

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

644 files changed

+1991
-1254
lines changed

articles/active-directory/authentication/concept-authentication-passwordless.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: active-directory
66
ms.service: active-directory
77
ms.subservice: authentication
88
ms.topic: conceptual
9-
ms.date: 06/23/2022
9+
ms.date: 08/17/2022
1010

1111
ms.author: justinha
1212
author: justinha
@@ -129,7 +129,7 @@ The following providers offer FIDO2 security keys of different form factors that
129129
| Octatco | ![y] | ![y]| ![n]| ![n]| ![n] | https://octatco.com/ |
130130
| OneSpan Inc. | ![n] | ![y]| ![n]| ![y]| ![n] | https://www.onespan.com/products/fido |
131131
| Swissbit | ![n] | ![y]| ![y]| ![n]| ![n] | https://www.swissbit.com/en/products/ishield-fido2/ |
132-
| Thales Group | ![n] | ![y]| ![y]| ![n]| ![n] | https://cpl.thalesgroup.com/access-management/authenticators/fido-devices |
132+
| Thales Group | ![n] | ![y]| ![y]| ![n]| ![y] | https://cpl.thalesgroup.com/access-management/authenticators/fido-devices |
133133
| Thetis | ![y] | ![y]| ![y]| ![y]| ![n] | https://thetis.io/collections/fido2 |
134134
| Token2 Switzerland | ![y] | ![y]| ![y]| ![n]| ![n] | https://www.token2.swiss/shop/product/token2-t2f2-alu-fido2-u2f-and-totp-security-key |
135135
| TrustKey Solutions | ![y] | ![y]| ![n]| ![n]| ![n] | https://www.trustkeysolutions.com/security-keys/ |

articles/active-directory/manage-apps/hide-application-from-user-portal.md

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ ms.service: active-directory
88
ms.subservice: app-mgmt
99
ms.workload: identity
1010
ms.topic: how-to
11-
ms.date: 07/21/2022
11+
ms.date: 08/17/2022
1212
ms.author: lenalepa
1313
ms.reviewer: ergreenl
1414
ms.collection: M365-identity-device-management
15+
zone_pivot_groups: enterprise-apps-all
16+
1517
#customer intent: As an admin, I want to hide an enterprise application from user's experience so that it is not listed in the user's Active directory access portals or Microsoft 365 launchers
1618
---
1719

@@ -27,6 +29,8 @@ Learn how to hide enterprise applications in Azure Active Directory. When an app
2729

2830
## Hide an application from the end user
2931

32+
:::zone pivot="portal"
33+
3034
Use the following steps to hide an application from My Apps portal and Microsoft 365 application launcher.
3135

3236
1. Sign in to the [Azure portal](https://portal.azure.com) as the global administrator for your directory.
@@ -38,12 +42,15 @@ Use the following steps to hide an application from My Apps portal and Microsoft
3842
1. Select **No** for the **Visible to users?** question.
3943
1. Select **Save**.
4044

45+
:::zone-end
46+
4147
> [!NOTE]
4248
> These instructions apply only to Enterprise applications.
4349
44-
## Use Azure AD PowerShell to hide an application
50+
:::zone pivot="aad-powershell"
4551

46-
To hide an application from the My Apps portal, you can manually add the HideApp tag to the service principal for the application. Run the following [AzureAD PowerShell](/powershell/module/azuread/#service_principals) commands to set the application's **Visible to Users?** property to **No**.
52+
53+
To hide an application from the My Apps portal, you can manually add the HideApp tag to the service principal for the application. Run the following AzureAD PowerShell commands to set the application's **Visible to Users?** property to **No**.
4754

4855
```PowerShell
4956
Connect-AzureAD
@@ -54,6 +61,53 @@ $tags = $servicePrincipal.tags
5461
$tags += "HideApp"
5562
Set-AzureADServicePrincipal -ObjectId $objectId -Tags $tags
5663
```
64+
:::zone-end
65+
66+
:::zone pivot="ms-powershell"
67+
68+
To hide an application from the My Apps portal, you can manually add the HideApp tag to the service principal for the application. Run the following Microsoft Graph PowerShell commands to set the application's **Visible to Users?** property to **No**.
69+
70+
```PowerShell
71+
Connect-MgGraph
72+
73+
$servicePrincipal = Get-MgServicePrincipal -ServicePrincipalId $objectId
74+
$tags = $servicePrincipal.tags
75+
$tags += "HideApp"
76+
Update-MgServicePrincipal -ServicePrincipalID $objectId -Tags $tags
77+
```
78+
:::zone-end
79+
80+
:::zone pivot="ms-graph"
81+
82+
To hide an enterprise application using [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer), run the following queries.
83+
84+
1. Get the application you want to hide.
85+
86+
```http
87+
GET https://graph.microsoft.com/v1.0/servicePrincipals/5f214ccd-3f74-41d7-b683-9a6d845eea4d
88+
```
89+
1. Update the application to hide it from users.
90+
91+
```http
92+
PATCH https://graph.microsoft.com/v1.0/servicePrincipals/5f214ccd-3f74-41d7-b683-9a6d845eea4d/
93+
```
94+
95+
Supply the following request body.
96+
97+
```json
98+
{
99+
"tags": [
100+
"HideApp"
101+
]
102+
}
103+
```
104+
105+
>[!WARNING]
106+
>If the application has other tags, you must include them in the request body. Otherwise, the query will overwrite them.
107+
108+
:::zone-end
109+
110+
:::zone pivot="portal"
57111

58112
## Hide Microsoft 365 applications from the My Apps portal
59113

@@ -66,6 +120,7 @@ Use the following steps to hide all Microsoft 365 applications from the My Apps
66120
1. For **Users can only see Office 365 apps in the Office 365 portal**, select **Yes**.
67121
1. Select **Save**.
68122

123+
:::zone-end
69124
## Next steps
70125

71126
- [Remove a user or group assignment from an enterprise app](./assign-user-or-group-access-portal.md)

articles/active-directory/manage-apps/view-applications-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ If you created a test application named **Azure AD SAML Toolkit 1** that was use
7777

7878
Learn how to delete an enterprise application.
7979
> [!div class="nextstepaction"]
80-
> [Delete an application](add-application-portal.md)
80+
> [Delete an application](delete-application-portal.md)
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
---
2+
title: 'Tutorial: Configure Lucid (All Products) 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 Lucid (All Products).
4+
services: active-directory
5+
documentationcenter: ''
6+
author: twimmers
7+
writer: Thwimmer
8+
manager: beatrizd
9+
ms.assetid: 54a47643-8703-4ab9-96a5-a803b344ccc4
10+
ms.service: active-directory
11+
ms.subservice: saas-app-tutorial
12+
ms.workload: identity
13+
ms.devlang: na
14+
ms.topic: tutorial
15+
ms.date: 07/20/2022
16+
ms.author: Thwimmer
17+
---
18+
19+
# Tutorial: Configure Lucid (All Products) for automatic user provisioning
20+
21+
This tutorial describes the steps you need to perform in both Lucid (All Products) and Azure Active Directory (Azure AD) to configure automatic user provisioning. When configured, Azure AD automatically provisions and de-provisions users and groups to [Lucid (All Products)](https://www.lucid.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).
22+
23+
24+
## Capabilities supported
25+
> [!div class="checklist"]
26+
> * Create users in Lucid (All Products).
27+
> * Remove users in Lucid (All Products) when they do not require access anymore.
28+
> * Keep user attributes synchronized between Azure AD and Lucid (All Products).
29+
> * Provision groups and group memberships in Lucid (All Products).
30+
> * [Single sign-on](./lucid-tutorial.md) to Lucid (All Products) (recommended)
31+
32+
## Prerequisites
33+
34+
The scenario outlined in this tutorial assumes that you already have the following prerequisites:
35+
36+
* [An Azure AD tenant](../develop/quickstart-create-new-tenant.md).
37+
* 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).
38+
* A user account in Lucid (All Products) with Admin rights.
39+
* Confirm that you are on an Enterprise account with an up-to-date pricing plan. To upgrade, please contact our sales team.
40+
* Contact your Lucidchart Customer Success Manager so that they can enable SCIM for your account.
41+
42+
## Step 1. Plan your provisioning deployment
43+
1. Learn about [how the provisioning service works](../app-provisioning/user-provisioning.md).
44+
1. Determine who will be in [scope for provisioning](../app-provisioning/define-conditional-rules-for-provisioning-user-accounts.md).
45+
1. Determine what data to [map between Azure AD and Lucid (All Products)](../app-provisioning/customize-application-attributes.md).
46+
47+
## Step 2. Configure Lucid (All Products) to support provisioning with Azure AD
48+
49+
1. Log in to [Lucid Admin Console](https://lucid.app/). Navigate to **Admin**.
50+
1. Click **App integration** in the left-hand menu.
51+
1. Select the **SCIM** tile.
52+
1. Click **Generate Token**. Lucid will populate the **Bearer Token** text field with a unique code for you to share with Azure.Copy and save the **Bearer token**. This value will be entered in the **Secret Token** * field in the Provisioning tab of your Lucid(All Products) application in the Azure portal.
53+
54+
![Screenshot of token generation.](media/lucid-all-products-provisioning-tutorial/generate-token.png)
55+
56+
## Step 3. Add Lucid (All Products) from the Azure AD application gallery
57+
58+
Add Lucid (All Products) from the Azure AD application gallery to start managing provisioning to Lucid (All Products). If you have previously setup Lucid (All Products) for SSO, you can use the same application. However it is 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).
59+
60+
## Step 4. Define who will be in scope for provisioning
61+
62+
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).
63+
64+
* 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).
65+
66+
* If you need additional roles, you can [update the application manifest](../develop/howto-add-app-roles-in-azure-ad-apps.md) to add new roles.
67+
68+
69+
## Step 5. Configure automatic user provisioning to Lucid (All Products)
70+
71+
This section guides you through the steps to configure the Azure AD provisioning service to create, update, and disable users and/or groups in Lucid (All Products) based on user and/or group assignments in Azure AD.
72+
73+
### To configure automatic user provisioning for Lucid (All Products) in Azure AD:
74+
75+
1. Sign in to the [Azure portal](https://portal.azure.com). Select **Enterprise Applications**, then select **All applications**.
76+
77+
![Screenshot of Enterprise applications blade.](common/enterprise-applications.png)
78+
79+
1. In the applications list, select **Lucid (All Products)**.
80+
81+
![Screenshot of the Lucid (All Products) link in the Applications list.](common/all-applications.png)
82+
83+
1. Select the **Provisioning** tab.
84+
85+
![Screenshot of Provisioning tab.](common/provisioning.png)
86+
87+
1. Set the **Provisioning Mode** to **Automatic**.
88+
89+
![Screenshot of Provisioning tab automatic.](common/provisioning-automatic.png)
90+
91+
1. Under the **Admin Credentials** section, input your Lucid (All Products) Tenant URL and Secret Token. Click **Test Connection** to ensure Azure AD can connect to Lucid (All Products). If the connection fails, ensure your Lucid (All Products) account has Admin permissions and try again.
92+
93+
![Screenshot of Token.](common/provisioning-testconnection-tenanturltoken.png)
94+
95+
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.
96+
97+
![Screenshot of Notification Email.](common/provisioning-notification-email.png)
98+
99+
1. Select **Save**.
100+
101+
1. Under the **Mappings** section, select **Synchronize Azure Active Directory Users to Lucid (All Products)**.
102+
103+
1. Review the user attributes that are synchronized from Azure AD to Lucid (All Products) in the **Attribute-Mapping** section. The attributes selected as **Matching** properties are used to match the user accounts in Lucid (All Products) for update operations. If you choose to change the [matching target attribute](../app-provisioning/customize-application-attributes.md), you will need to ensure that the Lucid (All Products) API supports filtering users based on that attribute. Select the **Save** button to commit any changes.
104+
105+
|Attribute|Type|Supported for filtering|Required by Lucid (All Products)|
106+
|---|---|---|---|
107+
|userName|String|✓|✓
108+
|emails[type eq "work"].value|String||✓
109+
|active|Boolean||
110+
|name.givenName|String||
111+
|name.familyName|String||
112+
|urn:ietf:params:scim:schemas:extension:lucid:2.0:User:billingCode|String||
113+
|urn:ietf:params:scim:schemas:extension:lucid:2.0:User:productLicenses.Lucidchart|String||
114+
|urn:ietf:params:scim:schemas:extension:lucid:2.0:User:productLicenses.Lucidspark|String||
115+
|urn:ietf:params:scim:schemas:extension:lucid:2.0:User:productLicenses.LucidscaleExplorer|String||
116+
|urn:ietf:params:scim:schemas:extension:lucid:2.0:User:productLicenses.LucidscaleCreator|String||
117+
118+
119+
1. Under the **Mappings** section, select **Synchronize Azure Active Directory Groups to Lucid (All Products)**.
120+
121+
1. Review the group attributes that are synchronized from Azure AD to Lucid (All Products) in the **Attribute-Mapping** section. The attributes selected as **Matching** properties are used to match the groups in Lucid (All Products) for update operations. Select the **Save** button to commit any changes.
122+
123+
|Attribute|Type|Supported for filtering|Required by Lucid (All Products)|
124+
|---|---|---|---|
125+
|displayName|String|✓|✓
126+
|members|Reference||
127+
128+
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).
129+
130+
1. To enable the Azure AD provisioning service for Lucid (All Products), change the **Provisioning Status** to **On** in the **Settings** section.
131+
132+
![Provisioning Status Toggled On](common/provisioning-toggle-on.png)
133+
134+
1. Define the users and/or groups that you would like to provision to Lucid (All Products) by choosing the desired values in **Scope** in the **Settings** section.
135+
136+
![Provisioning Scope](common/provisioning-scope.png)
137+
138+
1. When you are ready to provision, click **Save**.
139+
140+
![Saving Provisioning Configuration](common/provisioning-configuration-save.png)
141+
142+
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.
143+
144+
## Step 6. Monitor your deployment
145+
Once you've configured provisioning, use the following resources to monitor your deployment:
146+
147+
* Use the [provisioning logs](../reports-monitoring/concept-provisioning-logs.md) to determine which users have been provisioned successfully or unsuccessfully
148+
* 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 is to completion
149+
* If the provisioning configuration seems to be in an unhealthy state, the application will go into quarantine. Learn more about quarantine states [here](../app-provisioning/application-provisioning-quarantine-status.md).
150+
151+
152+
## More resources
153+
154+
* [Managing user account provisioning for Enterprise Apps](../app-provisioning/configure-automatic-user-provisioning-portal.md)
155+
* [What is application access and single sign-on with Azure Active Directory?](../manage-apps/what-is-single-sign-on.md)
156+
157+
## Next steps
158+
159+
* [Learn how to review logs and get reports on provisioning activity](../app-provisioning/check-status-user-account-provisioning.md)
25.1 KB
Loading

articles/active-directory/saas-apps/toc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2898,8 +2898,10 @@
28982898
href: linkedinelevate-provisioning-tutorial.md
28992899
- name: LinkedIn Sales Navigator
29002900
href: linkedinsalesnavigator-provisioning-tutorial.md
2901+
- name: Lucid (All Products)
2902+
href: lucid-all-products-provisioning-tutorial.md
29012903
- name: Lucidchart
2902-
href: lucidchart-provisioning-tutorial.md
2904+
href: lucidchart-provisioning-tutorial.md
29032905
- name: Leapsome
29042906
href: leapsome-provisioning-tutorial.md
29052907
- name: LogicGate

articles/active-directory/verifiable-credentials/admin-api.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,13 +827,23 @@ The response contains the following properties
827827

828828
| Property | Type | Description |
829829
| -------- | -------- | -------- |
830-
|`attestations`| [idTokenAttestation](#idtokenattestation-type) or [idTokenHintAttestation](#idtokenhintattestation-type) and/or [verifiablePresentationAttestation](#verifiablepresentationattestation-type) and/or [selfIssuedAttestation](#selfissuedattestation-type) and/or [accessTokenAttestation](#accesstokenattestation-type) (array) | describing supported inputs for the rules |
830+
|`attestations`| [attestions](#attestations-type)| describing supported inputs for the rules |
831831
|`validityInterval` | number | this value shows the lifespan of the credential |
832832
|`vc`| vcType array | types for this contract |
833833
|`customStatusEndpoint`| [customStatusEndpoint] (#customstatusendpoint-type) (optional) | status endpoint to include in the verifiable credential for this contract |
834834

835835
If the property `customStatusEndpoint` property isn't specified then the `anonymous` status endpoint is used.
836836

837+
#### attestations type
838+
839+
| Property | Type | Description |
840+
| -------- | -------- | -------- |
841+
|`idTokens`| [idTokenAttestation](#idtokenattestation-type) (array) (optional) | describes id token inputs|
842+
|`idTokenHints`| [idTokenHintAttestation](#idtokenhintattestation-type) (array) (optional) | describes id token hint inputs |
843+
|`presentations`| [verifiablePresentationAttestation](#verifiablepresentationattestation-type) (array) (optional) | describes verifiable presentations inputs |
844+
|`selfIssued`| [selfIssuedAttestation](#selfissuedattestation-type) (array) (optional) | describes self issued inputs |
845+
|`accessTokens`| [accessTokenAttestation](#accesstokenattestation-type) (array) (optional) | describes access token inputs |
846+
837847
#### idTokenAttestation type
838848

839849
| Property | Type | Description |

0 commit comments

Comments
 (0)