File tree 1 file changed +7
-8
lines changed
articles/application-gateway 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- title : Configure end-to-end SSL with Azure Application Gateway | Microsoft Docs
2
+ title : Configure end-to-end SSL with Azure Application Gateway
3
3
description : This article describes how to configure end-to-end SSL with Azure Application Gateway by using PowerShell
4
4
services : application-gateway
5
5
documentationcenter : na
6
- author : davidmu1
7
- manager : timlt
8
- editor : tysonn
6
+ author : vhorne
7
+ manager : jpconnock
9
8
10
- ms.assetid : e6d80a33-4047-4538-8c83-e88876c8834e
11
9
ms.service : application-gateway
12
10
ms.devlang : na
13
11
ms.topic : article
14
12
ms.tgt_pltfrm : na
15
13
ms.workload : infrastructure-services
16
- ms.date : 07/19/2017
17
- ms.author : davidmu
14
+ ms.date : 3/27/2018
15
+ ms.author : victorh
18
16
19
17
---
20
18
# 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
157
155
5 . Configure the certificate for the application gateway. This certificate is used to decrypt and reencrypt the traffic on the application gateway.
158
156
159
157
``` 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
161
160
```
162
161
163
162
> [ !NOTE]
You can’t perform that action at this time.
0 commit comments