Skip to content

Commit 3d41f24

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into natpatch
2 parents 2476163 + 50f3ffb commit 3d41f24

29 files changed

+393
-388
lines changed

articles/active-directory/manage-apps/howto-saml-token-encryption.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ ms.workload: identity
1313
ms.tgt_pltfrm: na
1414
ms.devlang: na
1515
ms.topic: conceptual
16-
ms.date: 02/06/2019
16+
ms.date: 03/13/2020
1717
ms.author: mimart
1818
ms.reviewer: paulgarn
1919
ms.collection: M365-identity-device-management
2020
---
21-
# How to: Configure Azure AD SAML token encryption (Preview)
21+
# How to: Configure Azure AD SAML token encryption
2222

2323
> [!NOTE]
2424
> Token encryption is an Azure Active Directory (Azure AD) premium feature. To learn more about Azure AD editions, features, and pricing, see [Azure AD pricing](https://azure.microsoft.com/pricing/details/active-directory/).
@@ -118,9 +118,6 @@ When you configure a keyCredential using Graph, PowerShell, or in the applicatio
118118
119119
### To configure token encryption using PowerShell
120120
121-
This functionality is coming soon.
122-
123-
<!--
124121
1. Use the latest Azure AD PowerShell module to connect to your tenant.
125122
126123
1. Set the token encryption settings using the **[Set-AzureApplication](https://docs.microsoft.com/powershell/module/azuread/set-azureadapplication?view=azureadps-2.0-preview)** command.
@@ -137,8 +134,6 @@ This functionality is coming soon.
137134
$app.TokenEncryptionKeyId
138135
```
139136
140-
-->
141-
142137
### To configure token encryption using the application manifest
143138
144139
1. From the Azure portal, go to **Azure Active Directory > App registrations**.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
href: manage-certificates-for-federated-single-sign-on.md
6969
- name: Tenant restrictions
7070
href: tenant-restrictions.md
71-
- name: Configure SAML token encryption (Preview)
71+
- name: Configure SAML token encryption
7272
href: howto-saml-token-encryption.md
7373
- name: End-user portals
7474
href: end-user-experiences.md

articles/automation/TOC.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,11 @@
305305
- name: Manage Shared Resources
306306
items:
307307
- name: Certificates
308-
href: automation-certificates.md
308+
href: shared-resources/certificates.md
309309
- name: Connections
310310
href: automation-connections.md
311311
- name: Credentials
312-
href: automation-credentials.md
312+
href: shared-resources/credentials.md
313313
- name: PowerShell modules
314314
items:
315315
- name: Modules
@@ -319,9 +319,9 @@
319319
- name: Update Azure PowerShell modules
320320
href: automation-update-azure-modules.md
321321
- name: Schedules
322-
href: automation-schedules.md
322+
href: shared-resources/schedules.md
323323
- name: Variables
324-
href: automation-variables.md
324+
href: shared-resources/variables.md
325325
- name: Manage Python 2 packages
326326
href: python-packages.md
327327
- name: Troubleshoot Shared Resources

articles/automation/manage-runas-account.md

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

articles/automation/manage-runbooks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can create a new runbook in Azure Automation using one of the Azure portals
2727

2828
### Create a runbook with PowerShell
2929

30-
You can use the [New-AzAutomationRunbook](https://docs.microsoft.com/powershell/module/az.automation/new-azautomationrunbook?view=azps-3.5.0) cmdlet to create an empty [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks). Use the *Type* parameter to specify one of the runbook types defined for **New-AzAutomationRunbook**.
30+
You can use the [New-AzAutomationRunbook](https://docs.microsoft.com/powershell/module/az.automation/new-azautomationrunbook?view=azps-3.5.0) cmdlet to create an empty [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks). Use the `Type` parameter to specify one of the runbook types defined for `New-AzAutomationRunbook`.
3131

3232
The following example shows how to create a new empty runbook.
3333

@@ -69,7 +69,7 @@ You can use the following procedure to import a script file into Azure Automatio
6969
7070
### Import a runbook from a script file with Windows PowerShell
7171

72-
Use the [Import-AzAutomationRunbook](https://docs.microsoft.com/powershell/module/az.automation/import-azautomationrunbook?view=azps-3.5.0) cmdlet to import a script file as a draft PowerShell Workflow runbook. If the runbook already exists, the import fails unless you use the *Force* parameter with the cmdlet.
72+
Use the [Import-AzAutomationRunbook](https://docs.microsoft.com/powershell/module/az.automation/import-azautomationrunbook?view=azps-3.5.0) cmdlet to import a script file as a draft PowerShell Workflow runbook. If the runbook already exists, the import fails unless you use the `Force` parameter with the cmdlet.
7373

7474
The following example shows how to import a script file into a runbook.
7575

@@ -86,7 +86,7 @@ Import-AzAutomationRunbook -Name $runbookName -Path $scriptPath `
8686

8787
## Test a runbook
8888

89-
When you test a runbook, the [Draft version](#publish-a-runbook) is executed and any actions that it performs are completed. No job history is created, but the [Output](automation-runbook-output-and-messages.md#output-stream) and [Warning and Error](automation-runbook-output-and-messages.md#message-streams) streams are displayed in the Test output pane. Messages to the [Verbose stream](automation-runbook-output-and-messages.md#message-streams) are displayed in the Output pane only if the *VerbosePreference* variable](automation-runbook-output-and-messages.md#preference-variables) is set to **Continue**.
89+
When you test a runbook, the [Draft version](#publish-a-runbook) is executed and any actions that it performs are completed. No job history is created, but the [Output](automation-runbook-output-and-messages.md#output-stream) and [Warning and Error](automation-runbook-output-and-messages.md#message-streams) streams are displayed in the Test output pane. Messages to the [Verbose stream](automation-runbook-output-and-messages.md#message-streams) are displayed in the Output pane only if the `VerbosePreference` variable](automation-runbook-output-and-messages.md#preference-variables) is set to Continue.
9090

9191
Even though the draft version is being run, the runbook still executes normally and performs any actions against resources in the environment. For this reason, you should only test runbooks on non-production resources.
9292

articles/automation/source-control-integration.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Azure Automation supports three types of source control:
2727

2828
* A source control repository (GitHub or Azure Repos)
2929
* A [Run As account](manage-runas-account.md)
30-
* The [latest Azure modules](automation-update-azure-modules.md) in your Automation account, including the **Az.Accounts** module (Az module equivalent of AzureRM.Profile)
30+
* The [latest Azure modules](automation-update-azure-modules.md) in your Automation account, including the `Az.Accounts` module (Az module equivalent of `AzureRM.Profile`)
3131

3232
> [!NOTE]
33-
> Source control synchronization jobs run under the user's Automation account and are billed at the same rate as other Automation jobs.
33+
> Source control synchronization jobs are run under the user's Automation account and are billed at the same rate as other Automation jobs.
3434
3535
## Configuring source control
3636

@@ -48,15 +48,15 @@ Use this procedure to configure source control using the Azure portal.
4848

4949
3. A browser window opens and prompts you to sign in. Follow the prompts to complete authentication.
5050

51-
4. On the **Source Control Summary** page, use the fields to fill in the source control properties defined below. Click **Save** when finished.
51+
4. On the Source Control Summary page, use the fields to fill in the source control properties defined below. Click **Save** when finished.
5252

5353
|Property |Description |
5454
|---------|---------|
5555
|Source control name | A friendly name for the source control. This name must contain only letters and numbers. |
56-
|Source control type | Type of source control mechanism. Available options are:</br> GitHub</br>Azure Repos (Git)</br> Azure Repos (TFVC) |
56+
|Source control type | Type of source control mechanism. Available options are:</br> * GitHub</br>* Azure Repos (Git)</br> * Azure Repos (TFVC) |
5757
|Repository | Name of the repository or project. The first 200 repositories are retrieved. To search for a repository, type the name in the field and click **Search on GitHub**.|
5858
|Branch | Branch from which to pull the source files. Branch targeting isn't available for the TFVC source control type. |
59-
|Folder path | Folder that contains the runbooks to synchronize, for example, /Runbooks. Only runbooks in the specified folder are synchronized. Recursion isn't supported. |
59+
|Folder path | Folder that contains the runbooks to synchronize, for example, **/Runbooks**. Only runbooks in the specified folder are synchronized. Recursion isn't supported. |
6060
|Auto Sync<sup>1</sup> | Setting that turns on or off automatic synchronization when a commit is made in the source control repository. |
6161
|Publish Runbook | Setting of On if runbooks are automatically published after synchronization from source control, and Off otherwise. |
6262
|Description | Text specifying additional details about the source control. |
@@ -66,7 +66,7 @@ Use this procedure to configure source control using the Azure portal.
6666
![Source control summary](./media/source-control-integration/source-control-summary.png)
6767

6868
> [!NOTE]
69-
> Your login for your source control repository might be different from your login for the Azure portal. Ensure that you are logged in with the correct account for your source control repository when configuring source control. If there is a doubt, open a new tab in your browser, log out from visualstudio.com or github.com, and try connecting to source control again.
69+
> The login for your source control repository might be different from your login for the Azure portal. Ensure that you are logged in with the correct account for your source control repository when configuring source control. If there is a doubt, open a new tab in your browser, log out from **visualstudio.com** or **github.com**, and try connecting to source control again.
7070
7171
### Configure source control -- PowerShell
7272

@@ -103,13 +103,13 @@ The following table defines the minimum PAT permissions required for GitHub. For
103103

104104
|Scope |Description |
105105
|---------|---------|
106-
|**repo** | |
107-
|repo:status | Access commit status |
108-
|repo_deployment | Access deployment status |
109-
|public_repo | Access public repositories |
110-
|**admin:repo_hook** | |
111-
|write:repo_hook | Write repository hooks |
112-
|read:repo_hook|Read repository hooks|
106+
|**`repo`** | |
107+
|`repo:status` | Access commit status |
108+
|`repo_deployment` | Access deployment status |
109+
|`public_repo` | Access public repositories |
110+
|**`admin:repo_hook`** | |
111+
|`write:repo_hook` | Write repository hooks |
112+
|`read:repo_hook`|Read repository hooks|
113113

114114
##### Minimum PAT permissions for Azure Repos
115115

@@ -122,15 +122,15 @@ The following list defines the minimum PAT permissions required for Azure Repos.
122122
| Identity | Read |
123123
| User profile | Read |
124124
| Work items | Read |
125-
| Service Connections | Read, query, manage<sup>1</sup> |
125+
| Service connections | Read, query, manage<sup>1</sup> |
126126

127-
<sup>1</sup> The Service Connections permission is only required if you have enabled autosync.
127+
<sup>1</sup> The Service connections permission is only required if you have enabled autosync.
128128

129129
## Synchronizing
130130

131-
Do the following to synchronize with source control.
131+
Follow these steps to synchronize with source control.
132132

133-
1. Select the source from the table on the **Source control** page.
133+
1. Select the source from the table on the Source control page.
134134

135135
2. Click **Start Sync** to start the sync process.
136136

@@ -172,7 +172,7 @@ Do the following to synchronize with source control.
172172
173173
```
174174
175-
6. Additional logging is available by selecting **All Logs** on the **Source Control Sync Job Summary** page. These additional log entries can help you troubleshoot issues that might arise when using source control.
175+
6. Additional logging is available by selecting **All Logs** on the Source Control Sync Job Summary page. These additional log entries can help you troubleshoot issues that might arise when using source control.
176176
177177
## Disconnecting source control
178178
@@ -182,11 +182,11 @@ To disconnect from a source control repository:
182182
183183
2. Select the source control mechanism to remove.
184184
185-
3. On the **Source Control Summary** page, click **Delete**.
185+
3. On the Source Control Summary page, click **Delete**.
186186
187187
## Handling encoding issues
188188
189-
If multiple people are editing runbooks in your source control repository using different editors, encoding issues can occur. To learn more about this situation, see [Common causes of encoding issues](/powershell/scripting/components/vscode/understanding-file-encoding#common-causes-of-encoding-issues)
189+
If multiple people are editing runbooks in your source control repository using different editors, encoding issues can occur. To learn more about this situation, see [Common causes of encoding issues](/powershell/scripting/components/vscode/understanding-file-encoding#common-causes-of-encoding-issues).
190190
191191
## Updating the PAT
192192

articles/azure-functions/functions-create-function-app-portal.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ This topic shows you how to use Azure Functions to create a function app in the
1414

1515
[!INCLUDE [functions-create-function-app-portal](../../includes/functions-create-function-app-portal.md)]
1616

17-
When you create a function app, supply a valid **App name**, which can contain only letters, numbers, and hyphens. Underscore (**_**) is not an allowed character.
18-
19-
Storage account names must be between 3 and 24 characters in length and may contain numbers and lowercase letters only. Your storage account name must be unique within Azure.
20-
2117
After the function app is created, you can create individual functions in one or more different languages. Create functions [by using the portal](functions-create-first-azure-function.md#create-function), [continuous deployment](functions-continuous-deployment.md), or by [uploading with FTP](https://github.com/projectkudu/kudu/wiki/Accessing-files-via-ftp).
2218

2319
## Service plans

articles/bastion/bastion-create-host-portal.md

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: 'Create an Azure Bastion host | Microsoft Docs'
3-
description: In this article, learn how to create an Azure Bastion host
2+
title: 'Create an Azure Bastion host: portal'
3+
description: In this article, learn how to create an Azure Bastion host using the portal
44
services: bastion
55
author: cherylmc
66

@@ -12,19 +12,19 @@ ms.author: cherylmc
1212

1313
---
1414

15-
# Create an Azure Bastion host
15+
# Create an Azure Bastion host using the portal
1616

1717
This article shows you how to create an Azure Bastion host using the Azure portal. Once you provision the Azure Bastion service in your virtual network, the seamless RDP/SSH experience is available to all of the VMs in the same virtual network. Azure Bastion deployment is per virtual network, not per subscription/account or virtual machine.
1818

19-
You can create a new bastion host resource in the portal either by specifying all of the settings manually, or by using the settings that correspond to an existing VM. Optionally, you can use [Azure Powershell](bastion-create-host-powershell.md) to create an Azure Bastion host.
19+
You can create a new bastion host resource in the portal either by specifying all of the settings manually, or by using the settings that correspond to an existing VM. To create a bastion host by using VM settings, see the [quickstart](quickstart-host-portal.md) article. Optionally, you can use [Azure PowerShell](bastion-create-host-powershell.md) to create an Azure Bastion host.
2020

2121
## Before you begin
2222

2323
Bastion is available in the following Azure public regions:
2424

2525
[!INCLUDE [available regions](../../includes/bastion-regions-include.md)]
2626

27-
## <a name="createhost"></a>Create a bastion host - specify settings
27+
## <a name="createhost"></a>Create a bastion host
2828

2929
This section helps you create a new Azure Bastion resource from the Azure portal.
3030

@@ -41,7 +41,7 @@ This section helps you create a new Azure Bastion resource from the Azure portal
4141
![create a bastion](./media/bastion-create-host-portal/settings.png)
4242

4343
* **Subscription**: The Azure subscription you want to use to create a new Bastion resource.
44-
* **Resource Group**: The Azure resource group in which the new Bastion resource will be created in. If you dont have an existing resource group, you can create a new one.
44+
* **Resource Group**: The Azure resource group in which the new Bastion resource will be created in. If you don't have an existing resource group, you can create a new one.
4545
* **Name**: The name of the new Bastion resource
4646
* **Region**: The Azure public region that the resource will be created in.
4747
* **Virtual network**: The virtual network in which the Bastion resource will be created in. You can create a new virtual network in the portal during this process, or use an existing virtual network. If you are using an existing virtual network, make sure the existing virtual network has enough free address space to accommodate the Bastion subnet requirements.
@@ -57,26 +57,6 @@ This section helps you create a new Azure Bastion resource from the Azure portal
5757
1. On the **Create a bastion** page, click **Create**.
5858
1. You will see a message letting you know that your deployment is underway. Status will display on this page as the resources are created. It takes about 5 minutes for the Bastion resource to be created and deployed.
5959

60-
## <a name="createvmset"></a>Create a bastion host - use VM settings
61-
62-
If you create a bastion host in the portal by using an existing VM, various settings will automatically default to correspond to your virtual machine and/or virtual network.
63-
64-
1. Open the [Azure portal](https://portal.azure.com). Go to your virtual machine, then click **Connect**.
65-
66-
![VM Connect](./media/bastion-create-host-portal/vmsettings.png)
67-
1. On the right sidebar, click **Bastion**, then **Use Bastion**.
68-
69-
![Bastion](./media/bastion-create-host-portal/vmbastion.png)
70-
1. On the Bastion page, fill out the following settings fields:
71-
72-
* **Name**: The name of the bastion host you want to create.
73-
* **Subnet**: The subnet inside your virtual network to which Bastion resource will be deployed. The subnet must be created with the name **AzureBastionSubnet**. This lets Azure know which subnet to deploy the Bastion resource to. This is different than a Gateway subnet. You must use a subnet of at least /27 or larger (/27, /26, and so on). Create the subnet without any Network Security Groups, route tables, or delegations. If you later choose to use Network Security Groups on the **AzureBastionSubnet**, see [Work with NSGs](bastion-nsg.md).
74-
75-
Click **Manage subnet configuration** to create the **AzureBastionSubnet**. Click **Create** to create the subnet, then proceed with the next settings.
76-
* **Public IP address**: The public IP of the Bastion resource on which RDP/SSH will be accessed (over port 443). Create a new public IP, or use an existing one. The public IP address must be in the same region as the Bastion resource you are creating.
77-
* **Public IP address name**: The name of the public IP address resource.
78-
1. On the validation screen, click **Create**. Wait for about 5 minutes for the Bastion resource create and deploy.
79-
8060
## Next steps
8161

8262
* Read the [Bastion FAQ](bastion-faq.md) for additional information.

articles/dms/quickstart-create-data-migration-service-hybrid-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: dms
1111
ms.workload: data-services
1212
ms.custom: "seo-lt-2019"
1313
ms.topic: quickstart
14-
ms.date: 01/21/2019
14+
ms.date: 03/13/2020
1515
---
1616

1717
# Quickstart: Create a hybrid mode instance with Azure portal & Azure Database Migration Service
@@ -141,7 +141,7 @@ You need to create an Azure App registration ID that the on-premises hybrid work
141141
7. Install the Azure Database Migration Service hybrid worker on your on-premises server by running the following command:
142142
143143
```
144-
<drive>:\<folder>\Install>DMSWorkerBootstrap.exe -a Install -IAcceptDMSLicenseTerms
144+
<drive>:\<folder>\Install>DMSWorkerBootstrap.exe -a Install -IAcceptDMSLicenseTerms -d
145145
```
146146
147147
> [!NOTE]

0 commit comments

Comments
 (0)