Skip to content

Commit c378664

Browse files
Merge pull request #99181 from MicrosoftDocs/master
Merge master to live, 4:30 AM
2 parents 1eacfc7 + e0b7dfe commit c378664

File tree

117 files changed

+897
-1268
lines changed

Some content is hidden

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

117 files changed

+897
-1268
lines changed

articles/active-directory-b2c/multi-factor-auth-technical-profile.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ The **InputClaims** element contains a list of claims to send to Azure MFA. You
5959
The **InputClaimsTransformations** element may contain a collection of **InputClaimsTransformation** elements that are used to modify the input claims or generate new ones before sending to the Azure MFA service.
6060

6161
### Output claims
62+
6263
The Azure MFA protocol provider does not return any **OutputClaims**, thus there is no need to specify output claims. You can, however, include claims that aren't returned by the Azure MFA identity provider as long as you set the `DefaultValue` attribute.
6364

6465
The **OutputClaimsTransformations** element may contain a collection of **OutputClaimsTransformation** elements that are used to modify the output claims or generate new ones.

articles/active-directory-b2c/phone-authentication.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ Start by updating the phone sign-up and sign-in custom policy files to work with
3434

3535
The following steps assume that you've completed the [prerequisites](#prerequisites) and have already cloned the [custom policy starter pack][starter-pack] repository to your local machine.
3636

37-
1. Find the [phone sign-up and sign-in custom policy files][starter-pack-phone] in your local clone of the starter pack repo, or download them directly. The XML policy files are located in the `active-directory-b2c-custom-policy-starterpack/scenarios/phone-number-passwordless` directory.
37+
1. Find the [phone sign-up and sign-in custom policy files][starter-pack-phone] in your local clone of the starter pack repo, or download them directly. The XML policy files are located in the following directory:
38+
39+
`active-directory-b2c-custom-policy-starterpack/scenarios/`**`phone-number-passwordless`**
40+
3841
1. In each file, replace the string `yourtenant` with the name of your Azure AD B2C tenant. For example, if the name of your B2C tenant is *contosob2c*, all instances of `yourtenant.onmicrosoft.com` become `contosob2c.onmicrosoft.com`.
39-
1. Complete the steps in the [Add application IDs to the custom policy](active-directory-b2c-get-started-custom.md#add-application-ids-to-the-custom-policy) section of [Get started with custom policies in Azure Active Directory B2C](active-directory-b2c-get-started-custom.md). That is, update the files in the `/phone-number-passwordless` directory with the **Application (client) IDs** of the two applications you registered when completing the prerequisites, *IdentityExperienceFramework* and *ProxyIdentityExperienceFramework*.
42+
43+
1. Complete the steps in the [Add application IDs to the custom policy](active-directory-b2c-get-started-custom.md#add-application-ids-to-the-custom-policy) section of [Get started with custom policies in Azure Active Directory B2C](active-directory-b2c-get-started-custom.md). In this case, update `/phone-number-passwordless/`**`Phone_Email_Base.xml`** with the **Application (client) IDs** of the two applications you registered when completing the prerequisites, *IdentityExperienceFramework* and *ProxyIdentityExperienceFramework*.
4044

4145
## Upload the policy files
4246

@@ -56,8 +60,8 @@ As you upload each file, Azure adds the prefix `B2C_1A_`.
5660

5761
## Test the custom policy
5862

59-
1. Under **Custom policies**, select **SignUpOrSignInWithPhoneOrEmail**.
60-
1. Under **Select application**, select the *webapp1* application that registered when completing the prerequisites.
63+
1. Under **Custom policies**, select **B2C_1A_SignUpOrSignInWithPhoneOrEmail**.
64+
1. Under **Select application**, select the *webapp1* application that you registered when completing the prerequisites.
6165
1. For **Select reply url**, choose `https://jwt.ms`.
6266
1. Select **Run now** and sign up using an email address or a phone number.
6367
1. Select **Run now** once again and sign in with the same account to confirm that you have the correct configuration.
@@ -68,6 +72,11 @@ You can find the phone sign-up and sign-in custom policy starter pack (and other
6872

6973
[Azure-Samples/active-directory-b2c-custom-policy-starterpack/scenarios/phone-number-passwordless][starter-pack-phone]
7074

75+
The starter pack policy files use multi-factor authentication technical profiles and phone number claims transformations:
76+
77+
* [Define an Azure Multi-Factor Authentication technical profile](multi-factor-auth-technical-profile.md)
78+
* [Define phone number claims transformations](phone-number-claims-transformations.md)
79+
7180
<!-- LINKS - External -->
7281
[starter-pack]: https://github.com/Azure-Samples/active-directory-b2c-custom-policy-starterpack
7382
[starter-pack-phone]: https://github.com/Azure-Samples/active-directory-b2c-custom-policy-starterpack/tree/master/scenarios/phone-number-passwordless

articles/active-directory/fundamentals/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ For more information, see [Change request and approval settings for an access pa
154154

155155
---
156156

157-
### Updates to the My Apps page along with new workspaces (General Availability)
157+
### Updates to the My Apps page along with new workspaces (Public Preview)
158158

159159
**Type:** New feature
160160
**Service category:** My Apps

articles/aks/http-application-routing.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@ az aks enable-addons --resource-group myResourceGroup --name myAKSCluster --addo
4747
After the cluster is deployed or updated, use the [az aks show][az-aks-show] command to retrieve the DNS zone name. This name is needed to deploy applications to the AKS cluster.
4848

4949
```azurecli
50-
$ az aks show --resource-group myResourceGroup --name myAKSCluster --query addonProfiles.httpApplicationRouting.config.HTTPApplicationRoutingZoneName -o table
50+
az aks show --resource-group myResourceGroup --name myAKSCluster --query addonProfiles.httpapplicationrouting.config.HTTPApplicationRoutingZoneName -o table
51+
```
5152

5253
Result
53-
-----------------------------------------------------
54+
5455
9f9c1fe7-21a1-416d-99cd-3543bb92e4c3.eastus.aksapp.io
55-
```
56+
5657

5758
## Deploy HTTP routing: Portal
5859

articles/automation/automation-first-runbook-textual-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To complete this tutorial, you need the following prerequisites:
2424
* Azure subscription. If you don't have one yet, you can [activate your MSDN subscriber benefits](https://azure.microsoft.com/pricing/member-offers/msdn-benefits-details/) or sign up for a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
2525
* [Automation account](automation-quickstart-create-account.md) to hold the runbook and authenticate to Azure resources. This account must have permission to start and stop the virtual machine.
2626
* An Azure virtual machine. You stop and start this machine so it shouldn't be a production VM.
27-
* You may need to [update your Azure modules](automation-update-azure-modules.md) based on the cmdlets you use.
27+
* You may need to [import](https://docs.microsoft.com/en-us/azure/automation/shared-resources/modules)/[update your Azure modules](automation-update-azure-modules.md) based on the cmdlets you use.
2828

2929
## Create new runbook
3030

articles/azure-cache-for-redis/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- name: Azure Cache for Redis Documentation
2-
href: index.md
2+
href: index.yml
33
- name: Overview
44
items:
55
- name: About Azure Cache for Redis

articles/azure-cache-for-redis/cache-faq.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
title: Azure Cache for Redis FAQ
33
description: Learn the answers to common questions, patterns, and best practices for Azure Cache for Redis
44
author: yegu-ms
5-
5+
ms.author: yegu
66
ms.service: cache
77
ms.topic: conceptual
88
ms.date: 04/29/2019
9-
ms.author: yegu
10-
119
---
1210
# Azure Cache for Redis FAQ
1311
Learn the answers to common questions, patterns, and best practices for Azure Cache for Redis.
@@ -467,7 +465,7 @@ Unlike traditional caches that deal only with key-value pairs, Redis is popular
467465

468466
Another key aspect to Redis success is the healthy, vibrant open- source ecosystem built around it. This is reflected in the diverse set of Redis clients available across multiple languages. This ecosystem and wide range of clients allow Azure Cache for Redis to be used by nearly any workload you would build inside of Azure.
469467

470-
For more information about getting started with Azure Cache for Redis, see [How to Use Azure Cache for Redis](cache-dotnet-how-to-use-azure-redis-cache.md) and [Azure Cache for Redis documentation](index.md).
468+
For more information about getting started with Azure Cache for Redis, see [How to Use Azure Cache for Redis](cache-dotnet-how-to-use-azure-redis-cache.md) and [Azure Cache for Redis documentation](index.yml).
471469

472470
### Managed Cache service
473471
[Managed Cache service was retired November 30, 2016.](https://azure.microsoft.com/blog/azure-managed-cache-and-in-role-cache-services-to-be-retired-on-11-30-2016/)

articles/azure-cache-for-redis/index.md

Lines changed: 0 additions & 233 deletions
This file was deleted.

0 commit comments

Comments
 (0)