Skip to content

Commit b0a3148

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into vivek2
2 parents d183658 + 917d1f8 commit b0a3148

File tree

147 files changed

+2889
-1326
lines changed

Some content is hidden

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

147 files changed

+2889
-1326
lines changed

.openpublishing.redirection.defender-for-cloud.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -710,6 +710,11 @@
710710
"redirect_url": "/azure/defender-for-cloud/defender-for-containers-usage",
711711
"redirect_document_id": true
712712
},
713+
{
714+
"source_path_from_root": "/articles/defender-for-cloud/file-integrity-monitoring-usage.md",
715+
"redirect_url": "/azure/defender-for-cloud/file-integrity-monitoring-enable-log-analytics",
716+
"redirect_document_id": true
717+
},
713718
{
714719
"source_path_from_root": "/articles/defender-for-cloud/release-notes.md#auto-deployment-of-azure-monitor-agent-preview",
715720
"redirect_url": "/azure/defender-for-cloud/release-notes#azure-monitor-agent-integration-now-in-preview",

articles/active-directory/governance/TOC.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,14 @@
233233
- name: Reference
234234
expanded: true
235235
items:
236+
- name: Identity Governance - PowerShell
237+
href: /powershell/module/microsoft.graph.identity.governance/?view=graph-powershell-beta
236238
- name: Access reviews - Microsoft Graph API
237239
href: /graph/api/resources/accessreviewsv2-overview
238240
- name: Entitlement management - Microsoft Graph API
239241
href: /graph/api/resources/entitlementmanagement-overview
240242
- name: Lifecycle Workflows - Microsoft Graph API
241-
href: /graph/api/resources/identitygovernance-lifecycleworkflows-overview?view=graph-rest-beta
243+
href: /graph/api/resources/identitygovernance-lifecycleworkflows-overview
242244
- name: Lifecycle Workflows - FAQs (Preview)
243245
href: workflows-faqs.md
244246
- name: Developer API reference Lifecycle Workflows- Azure Active Directory
Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
---
2+
3+
title: How to view applied conditional access policies in the Azure AD sign-in logs | Microsoft Docs
4+
description: Learn how to view applied conditional access policies in the Azure AD sign-in logs
5+
services: active-directory
6+
documentationcenter: ''
7+
author: MarkusVi
8+
manager: amycolannino
9+
editor: ''
10+
11+
ms.service: active-directory
12+
ms.topic: how-to
13+
ms.workload: identity
14+
ms.subservice: report-monitor
15+
ms.date: 09/14/2022
16+
ms.author: markvi
17+
ms.reviewer: besiler
18+
19+
ms.collection: M365-identity-device-management
20+
---
21+
22+
# How to: View applied conditional access policies in the Azure AD sign-in logs
23+
24+
With conditional access policies, you can control, how your users get access to the resources of your Azure tenant. As a tenant admin, you need to be able to determine what impact your conditional access policies have on sign-ins to your tenant, so that you can take action if necessary. The sign-in logs in Azure AD provide you with the information you need to assess the impact of your policies.
25+
26+
27+
This article explains how you can get access to the information about applied conditional access policies.
28+
29+
30+
## What you should know
31+
32+
As an Azure AD administrator, you can use the sign-in logs to:
33+
34+
- Troubleshoot sign in problems
35+
- Check on feature performance
36+
- Evaluate security of a tenant
37+
38+
Some scenarios require you to get an understanding for how your conditional access policies were applied to a sign-in event. Common examples include:
39+
40+
- **Helpdesk administrators** who need to look at applied conditional access policies to understand if a policy is the root cause of a ticket opened by a user.
41+
42+
- **Tenant administrators** who need to verify that conditional access policies have the intended impact on the users of a tenant.
43+
44+
45+
You can access the sign-in logs using the Azure portal, MS Graph, and PowerShell.
46+
47+
48+
49+
## Required administrator roles
50+
51+
52+
To see applied conditional access policies in the sign-in logs, administrators must have permissions to:
53+
54+
- View sign-in logs
55+
- View conditional access policies
56+
57+
The least privileged built-in role that grants both permissions is the **Security Reader**. As a best practice, your global administrator should add the **Security Reader** role to the related administrator accounts.
58+
59+
60+
The following built in roles grant permissions to read conditional access policies:
61+
62+
- Global Administrator
63+
64+
- Global Reader
65+
66+
- Security Administrator
67+
68+
- Security Reader
69+
70+
- Conditional Access Administrator
71+
72+
73+
The following built in roles grant permission to view sign-in logs:
74+
75+
- Global Administrator
76+
77+
- Security Administrator
78+
79+
- Security Reader
80+
81+
- Global Reader
82+
83+
- Reports Reader
84+
85+
86+
## Permissions for client apps
87+
88+
If you use a client app to pull sign-in logs from Graph, your app needs permissions to receive the **appliedConditionalAccessPolicy** resource from Graph. As a best practice, assign **Policy.Read.ConditionalAccess** because it's the least privileged permission. Any of the following permissions is sufficient for a client app to access applied CA policies in sign-in logs through Graph:
89+
90+
- Policy.Read.ConditionalAccess
91+
92+
- Policy.ReadWrite.ConditionalAccess
93+
94+
- Policy.Read.All
95+
96+
97+
98+
## Permissions for PowerShell
99+
100+
Like any other client app, the Microsoft Graph PowerShell module needs client permissions to access applied conditional access policies in the sign-in logs. To successfully pull applied conditional access in the sign-in logs, you must consent to the necessary permissions with your administrator account for MS Graph PowerShell. As a best practice, consent to:
101+
102+
- Policy.Read.ConditionalAccess
103+
- AuditLog.Read.All
104+
- Directory.Read.All
105+
106+
These permissions are the least privileged permissions with the necessary access.
107+
108+
To consent to the necessary permissions, use:
109+
110+
` Connect-MgGraph -Scopes Policy.Read.ConditionalAccess, AuditLog.Read.All, Directory.Read.All `
111+
112+
To view the sign-in logs, use:
113+
114+
`Get-MgAuditLogSignIn `
115+
116+
The output of this cmdlet contains a **AppliedConditionalAccessPolicies** property that shows all the conditional access policies applied to the sign-in.
117+
118+
For more information about this cmdlet, see [Get-MgAuditLogSignIn](https://docs.microsoft.com/powershell/module/microsoft.graph.reports/get-mgauditlogsignin?view=graph-powershell-1.0).
119+
120+
The AzureAD Graph PowerShell module doesn't support viewing applied conditional access policies; only the Microsoft Graph PowerShell module returns applied conditional access policies.
121+
122+
## Confirming access
123+
124+
In the **Conditional Access** tab, you see a list of conditional access policies applied to that sign-in event.
125+
126+
127+
To confirm that you have admin access to view applied conditional access policies in the sign-ins logs, do:
128+
129+
1. Navigate to the Azure portal.
130+
131+
2. In the top-right corner, select your directory, and then select **Azure Active Directory** in the left navigation pane.
132+
133+
3. In the **Monitoring** section, select **Sign-in logs**.
134+
135+
4. Click an item in the sign-in row table to bring up the Activity Details: Sign-ins context pane.
136+
137+
5. Click on the Conditional Access tab in the context pane. If your screen is small, you may need to click the ellipsis [] to see all context pane tabs.
138+
139+
140+
141+
142+
## Next steps
143+
144+
* [Sign-ins error codes reference](./concept-sign-ins.md)
145+
* [Sign-ins report overview](concept-sign-ins.md)

articles/active-directory/reports-monitoring/toc.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,20 @@
6363
items:
6464
- name: Access activity logs
6565
href: howto-access-activity-logs.md
66+
- name: Configure prerequisites for Reporting API
67+
href: howto-configure-prerequisites-for-reporting-api.md
6668
- name: Download logs
6769
href: howto-download-logs.md
68-
- name: Manage inactive user accounts in Azure AD
69-
href: howto-manage-inactive-user-accounts.md
7070
- name: Find activity reports
7171
href: howto-find-activity-reports.md
72+
- name: Manage inactive user accounts in Azure AD
73+
href: howto-manage-inactive-user-accounts.md
7274
- name: Troubleshoot sign-in errors for a user
7375
href: howto-troubleshoot-sign-in-errors.md
74-
- name: Configure prerequisites for Reporting API
75-
href: howto-configure-prerequisites-for-reporting-api.md
76-
- name: How to use Azure AD workbooks
76+
- name: Use Azure AD workbooks
7777
href: howto-use-azure-monitor-workbooks.md
78+
- name: View applied conditional access policies
79+
href: how-to-view-applied-conditional-access-policies.md
7880

7981
- name: Monitoring
8082
items:
@@ -125,6 +127,7 @@
125127
href: reports-faq.yml
126128
- name: Sign-in log schema
127129
href: reference-azure-monitor-sign-ins-log-schema.md
130+
128131
- name: Workbooks
129132
items:
130133
- name: Authentication prompts analysis
@@ -139,6 +142,7 @@
139142
href: workbook-risk-analysis.md
140143
- name: Sensitive Operations Report
141144
href: workbook-sensitive-operations-report.md
145+
142146
- name: Recommendations
143147
items:
144148
- name: Convert to conditional access MFA
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
---
2+
title: 'Tutorial: Azure AD SSO integration with Arena EU'
3+
description: Learn how to configure single sign-on between Azure Active Directory and Arena EU.
4+
services: active-directory
5+
author: jeevansd
6+
manager: CelesteDG
7+
ms.reviewer: CelesteDG
8+
ms.service: active-directory
9+
ms.subservice: saas-app-tutorial
10+
ms.workload: identity
11+
ms.topic: tutorial
12+
ms.date: 09/06/2022
13+
ms.author: jeedes
14+
15+
---
16+
17+
# Tutorial: Azure AD SSO integration with Arena EU
18+
19+
In this tutorial, you'll learn how to integrate Arena EU with Azure Active Directory (Azure AD). When you integrate Arena EU with Azure AD, you can:
20+
21+
* Control in Azure AD who has access to Arena EU.
22+
* Enable your users to be automatically signed-in to Arena EU with their Azure AD accounts.
23+
* Manage your accounts in one central location - the Azure portal.
24+
25+
## Prerequisites
26+
27+
To get started, you need the following items:
28+
29+
* An Azure AD subscription. If you don't have a subscription, you can get a [free account](https://azure.microsoft.com/free/).
30+
* Arena EU single sign-on (SSO) enabled subscription.
31+
* Along with Cloud Application Administrator, Application Administrator can also add or manage applications in Azure AD.
32+
For more information, see [Azure built-in roles](../roles/permissions-reference.md).
33+
34+
## Scenario description
35+
36+
In this tutorial, you configure and test Azure AD SSO in a test environment.
37+
38+
* Arena EU supports **SP** and **IDP** initiated SSO.
39+
40+
> [!NOTE]
41+
> Identifier of this application is a fixed string value so only one instance can be configured in one tenant.
42+
43+
## Add Arena EU from the gallery
44+
45+
To configure the integration of Arena EU into Azure AD, you need to add Arena EU from the gallery to your list of managed SaaS apps.
46+
47+
1. Sign in to the Azure portal using either a work or school account, or a personal Microsoft account.
48+
1. On the left navigation pane, select the **Azure Active Directory** service.
49+
1. Navigate to **Enterprise Applications** and then select **All Applications**.
50+
1. To add new application, select **New application**.
51+
1. In the **Add from the gallery** section, type **Arena EU** in the search box.
52+
1. Select **Arena EU** from results panel and then add the app. Wait a few seconds while the app is added to your tenant.
53+
54+
Alternatively, you can also use the [Enterprise App Configuration Wizard](https://portal.office.com/AdminPortal/home?Q=Docs#/azureadappintegration). In this wizard, you can add an application to your tenant, add users/groups to the app, assign roles, as well as walk through the SSO configuration as well. You can learn more about O365 wizards [here](/microsoft-365/admin/misc/azure-ad-setup-guides?view=o365-worldwide&preserve-view=true).
55+
56+
## Configure and test Azure AD SSO for Arena EU
57+
58+
Configure and test Azure AD SSO with Arena EU using a test user called **B.Simon**. For SSO to work, you need to establish a link relationship between an Azure AD user and the related user at Arena EU.
59+
60+
To configure and test Azure AD SSO with Arena EU, perform the following steps:
61+
62+
1. **[Configure Azure AD SSO](#configure-azure-ad-sso)** - to enable your users to use this feature.
63+
1. **[Create an Azure AD test user](#create-an-azure-ad-test-user)** - to test Azure AD single sign-on with B.Simon.
64+
1. **[Assign the Azure AD test user](#assign-the-azure-ad-test-user)** - to enable B.Simon to use Azure AD single sign-on.
65+
1. **[Configure Arena EU SSO](#configure-arena-eu-sso)** - to configure the single sign-on settings on application side.
66+
1. **[Create Arena EU test user](#create-arena-eu-test-user)** - to have a counterpart of B.Simon in Arena EU that is linked to the Azure AD representation of user.
67+
1. **[Test SSO](#test-sso)** - to verify whether the configuration works.
68+
69+
## Configure Azure AD SSO
70+
71+
Follow these steps to enable Azure AD SSO in the Azure portal.
72+
73+
1. In the Azure portal, on the **Arena EU** application integration page, find the **Manage** section and select **single sign-on**.
74+
1. On the **Select a single sign-on method** page, select **SAML**.
75+
1. On the **Set up single sign-on with SAML** page, click the pencil icon for **Basic SAML Configuration** to edit the settings.
76+
77+
![Screenshot shows how to edit Basic SAML Configuration.](common/edit-urls.png "Basic Configuration")
78+
79+
1. On the **Basic SAML Configuration** section, the user does not have to perform any step as the app is already pre-integrated with Azure.
80+
81+
1. Click **Set additional URLs** and perform the following step if you wish to configure the application in **SP** initiated mode:
82+
83+
In the **Sign-on URL** text box, type the URL:
84+
`https://app.europe.arenaplm.com/`
85+
86+
1. On the **Set up single sign-on with SAML** page, in the **SAML Signing Certificate** section, find **Certificate (Base64)** and select **Download** to download the certificate and save it on your computer.
87+
88+
![Screenshot shows the Certificate download link.](common/certificatebase64.png "Certificate")
89+
90+
1. On the **Set up Arena EU** section, copy the appropriate URL(s) based on your requirement.
91+
92+
![Screenshot shows how to copy the appropriate configuration URL.](common/copy-configuration-urls.png "Metadata")
93+
94+
### Create an Azure AD test user
95+
96+
In this section, you'll create a test user in the Azure portal called B.Simon.
97+
98+
1. From the left pane in the Azure portal, select **Azure Active Directory**, select **Users**, and then select **All users**.
99+
1. Select **New user** at the top of the screen.
100+
1. In the **User** properties, follow these steps:
101+
1. In the **Name** field, enter `B.Simon`.
102+
1. In the **User name** field, enter the [email protected]. For example, `[email protected]`.
103+
1. Select the **Show password** check box, and then write down the value that's displayed in the **Password** box.
104+
1. Click **Create**.
105+
106+
### Assign the Azure AD test user
107+
108+
In this section, you'll enable B.Simon to use Azure single sign-on by granting access to Arena EU.
109+
110+
1. In the Azure portal, select **Enterprise Applications**, and then select **All applications**.
111+
1. In the applications list, select **Arena EU**.
112+
1. In the app's overview page, find the **Manage** section and select **Users and groups**.
113+
1. Select **Add user**, then select **Users and groups** in the **Add Assignment** dialog.
114+
1. In the **Users and groups** dialog, select **B.Simon** from the Users list, then click the **Select** button at the bottom of the screen.
115+
1. If you are expecting a role to be assigned to the users, you can select it from the **Select a role** dropdown. If no role has been set up for this app, you see "Default Access" role selected.
116+
1. In the **Add Assignment** dialog, click the **Assign** button.
117+
118+
## Configure Arena EU SSO
119+
120+
To configure single sign-on on **Arena EU** side, you need to send the downloaded **Certificate (Base64)** and appropriate copied URLs from Azure portal to [Arena EU support team](mailto:[email protected]). They set this setting to have the SAML SSO connection set properly on both sides.
121+
122+
### Create Arena EU test user
123+
124+
In this section, you create a user called Britta Simon at Arena EU. Work with [Arena EU support team](mailto:[email protected]) to add the users in the Arena EU platform. Users must be created and activated before you use single sign-on.
125+
126+
## Test SSO
127+
128+
In this section, you test your Azure AD single sign-on configuration with following options.
129+
130+
#### SP initiated:
131+
132+
* Click on **Test this application** in Azure portal. This will redirect to Arena EU Sign-on URL where you can initiate the login flow.
133+
134+
* Go to Arena EU Sign-on URL directly and initiate the login flow from there.
135+
136+
#### IDP initiated:
137+
138+
* Click on **Test this application** in Azure portal and you should be automatically signed in to the Arena EU for which you set up the SSO.
139+
140+
You can also use Microsoft My Apps to test the application in any mode. When you click the Arena EU tile in the My Apps, if configured in SP mode you would be redirected to the application sign-on page for initiating the login flow and if configured in IDP mode, you should be automatically signed in to the Arena EU for which you set up the SSO. For more information about the My Apps, see [Introduction to the My Apps](../user-help/my-apps-portal-end-user-access.md).
141+
142+
## Next steps
143+
144+
Once you configure Arena EU you can enforce session control, which protects exfiltration and infiltration of your organization’s sensitive data in real time. Session control extends from Conditional Access. [Learn how to enforce session control with Microsoft Cloud App Security](/cloud-app-security/proxy-deployment-aad).

articles/active-directory/saas-apps/concur-tutorial.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: saas-app-tutorial
1010
ms.workload: identity
1111
ms.topic: tutorial
12-
ms.date: 08/26/2021
12+
ms.date: 09/13/2022
1313
ms.author: jeedes
1414
---
1515

@@ -21,6 +21,12 @@ In this tutorial, you'll learn how to integrate Concur with Azure Active Directo
2121
* Enable your users to be automatically signed-in to Concur with their Azure AD accounts.
2222
* Manage your accounts in one central location - the Azure portal.
2323

24+
> [!NOTE]
25+
> The guidance provided in this article does not cover the new **Manage Single Sign-On** offering that is available from SAP Concur as of mid 2019.
26+
> This new self-service SSO offering relies on **IdP initiated** sign-in which the current gallery app does not allow, due to the **Sign on URL** not being optional.
27+
> The **Sign on URL** must be empty for IdP initiated sign-in via MyApps portal to work as intended.
28+
> For these reason you must start out with a custom non-galleryp application to set up SSO when using the **Manage Single Sign-On** feature in SAP Concur.
29+
2430
## Prerequisites
2531

2632
To get started, you need the following items:

0 commit comments

Comments
 (0)