Skip to content

Commit 3beb067

Browse files
authored
Merge pull request #113743 from MicrosoftDocs/master
5/04 AM Publish
2 parents d9cd51c + b252147 commit 3beb067

File tree

64 files changed

+1247
-2356
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

+1247
-2356
lines changed

articles/application-gateway/key-vault-certs.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,21 @@ Application Gateway integration with Key Vault requires a three-step configurati
4545
You then either import an existing certificate or create a new one in your key vault. The certificate will be used by applications that run through the application gateway. In this step, you can also use a key vault secret that's stored as a password-less, base-64 encoded PFX file. We recommend using a certificate type because of the autorenewal capability that's available with certificate type objects in the key vault. After you've created a certificate or a secret, you define access policies in the key vault to allow the identity to be granted *get* access to the secret.
4646

4747
> [!NOTE]
48-
> If you deploy the application gateway via an ARM template, either by using the Azure CLI or PowerShell, or via an Azure Application deployed from the Azure portal, the SSL certificate that's stored in the key vault as a base-64-encoded PFX file **must be passwordless**. Also, you must complete the steps in [Use Azure Key Vault to pass secure parameter value during deployment](../azure-resource-manager/templates/key-vault-parameter.md). It's particularly important to set `enabledForTemplateDeployment` to `true`.
48+
> If you deploy the application gateway via an ARM template, either by using the Azure CLI or PowerShell, or via an Azure application deployed from the Azure portal, the SSL certificate is stored in the key vault as a base64-encoded PFX file. You must complete the steps in [Use Azure Key Vault to pass secure parameter value during deployment](../azure-resource-manager/templates/key-vault-parameter.md).
49+
>
50+
> It's particularly important to set `enabledForTemplateDeployment` to `true`. The certificate may be passwordless or it may have a password. In the case of a certificate with a password, the following example shows a possible configuration for the `sslCertificates` entry in the `properties` for the ARM template configuration for an app gateway. The values of `appGatewaySSLCertificateData` and `appGatewaySSLCertificatePassword` are looked up from the key vault as described in the section [Reference secrets with dynamic ID](../azure-resource-manager/templates/key-vault-parameter.md#reference-secrets-with-dynamic-id). Follow the references backward from `parameters('secretName')` to see how the lookup happens. If the certificate is passwordless, omit the `password` entry.
51+
>
52+
> ```
53+
> "sslCertificates": [
54+
> {
55+
> "name": "appGwSslCertificate",
56+
> "properties": {
57+
> "data": "[parameters('appGatewaySSLCertificateData')]",
58+
> "password": "[parameters('appGatewaySSLCertificatePassword')]"
59+
> }
60+
> }
61+
> ]
62+
> ```
4963
5064
1. **Configure the application gateway**
5165

articles/azure-resource-manager/management/move-limitations/virtual-machines-move-limitations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following scenarios aren't yet supported:
2424

2525
To move virtual machines configured with Azure Backup, you must delete the restore points from the vault.
2626

27-
If [soft delete](../../../backup/backup-azure-security-feature-cloud.md) is enabled for your virtual machine, you can't move the virtual machine while those restore points are kept. Either [disable soft delete](../../../backup/backup-azure-security-feature-cloud.md#disabling-soft-delete) or wait 14 days after deleting the restore points.
27+
If [soft delete](../../../backup/backup-azure-security-feature-cloud.md) is enabled for your virtual machine, you can't move the virtual machine while those restore points are kept. Either [disable soft delete](../../../backup/backup-azure-security-feature-cloud.md#enabling-and-disabling-soft-delete) or wait 14 days after deleting the restore points.
2828

2929
### Portal
3030

articles/azure-resource-manager/templates/deploy-to-azure-button.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Deploy to Azure button
33
description: Use button to deploy Azure Resource Manager templates from a GitHub repository.
44
ms.topic: conceptual
5-
ms.date: 02/07/2020
5+
ms.date: 05/04/2020
66
---
77
# Use a deployment button to deploy templates from GitHub repository
88

9-
This article describes how to use the **Deploy to Azure** button to deploy templates from a GitHub repository. You can add the button directly to the README.md file in your GitHub repository or to a web page that references the repository.
9+
This article describes how to use the **Deploy to Azure** button to deploy templates from a GitHub repository. You can add the button directly to the README.md file in your GitHub repository or to a web page that references the repository. This method only supports resource group level deployment.
1010

1111
## Use common image
1212

articles/backup/azure-file-share-support-matrix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can use the [Azure Backup service](https://docs.microsoft.com/azure/backup/b
1313

1414
Backup for Azure file shares is available in the following GEOS:
1515

16-
| GA regions | Supported regions but not GA |
16+
| GA regions | Supported regions (as part of preview) but not yet GA |
1717
| ------------------------------------------------------------ | ------------------------------------------------------------ |
1818
| Australia South East (ASE), Canada Central (CNC), West Central US (WCUS), West US 2 (WUS 2), India South (INS), North Central US (NCUS), Japan East (JPE), Brazil South (BRS), South East Asia (SEA),Switzerland West (SZW), UAE Central (UAC), Norway East (NWE),India West (INW), Australia Central (ACL), Korea Central (KRC), Japan West (JPW), South Africa North (SAN), UK West (UKW), Korea South (KRS) |Australia East (AE), Canada East (CE), East Asia (EA), East US (EUS), East US 2 (EUS2), India Central (INC), North Europe (NE), South Central US (SCUS), UK South (UKS), West Europe (WE), West US (WUS), US Gov Arizona (UGA), US Gov Texas (UGT), US Gov Virginia (UGV), UAE North(UAN), France Central (FRC), Germany North (GN), Germany West Central (GWC), South Africa West (SAW), Norway West (NWW), Switzerland North (SZN) , Central US (CUS) |
1919

0 commit comments

Comments
 (0)