Skip to content

Commit 7f5af87

Browse files
authored
Merge pull request #36411 from vhorne/pubpr5339
Update from public PR 5339 plus more
2 parents 8c565c6 + 191c8a1 commit 7f5af87

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

articles/application-gateway/application-gateway-end-to-end-ssl-powershell.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
---
2-
title: Configure end-to-end SSL with Azure Application Gateway | Microsoft Docs
2+
title: Configure end-to-end SSL with Azure Application Gateway
33
description: This article describes how to configure end-to-end SSL with Azure Application Gateway by using PowerShell
44
services: application-gateway
55
documentationcenter: na
6-
author: davidmu1
7-
manager: timlt
8-
editor: tysonn
6+
author: vhorne
7+
manager: jpconnock
98

10-
ms.assetid: e6d80a33-4047-4538-8c83-e88876c8834e
119
ms.service: application-gateway
1210
ms.devlang: na
1311
ms.topic: article
1412
ms.tgt_pltfrm: na
1513
ms.workload: infrastructure-services
16-
ms.date: 07/19/2017
17-
ms.author: davidmu
14+
ms.date: 3/27/2018
15+
ms.author: victorh
1816

1917
---
2018
# Configure end-to-end SSL by using Application Gateway with PowerShell
@@ -157,7 +155,8 @@ All configuration items are set before creating the application gateway. The fol
157155
5. Configure the certificate for the application gateway. This certificate is used to decrypt and reencrypt the traffic on the application gateway.
158156

159157
```powershell
160-
$cert = New-AzureRmApplicationGatewaySSLCertificate -Name cert01 -CertificateFile <full path to .pfx file> -Password <password for certificate file>
158+
$password = ConvertTo-SecureString <password for certificate file> -AsPlainText -Force
159+
$cert = New-AzureRmApplicationGatewaySSLCertificate -Name cert01 -CertificateFile <full path to .pfx file> -Password $password
161160
```
162161

163162
> [!NOTE]

0 commit comments

Comments
 (0)