Skip to content

Commit f16aa20

Browse files
authored
Update New-AzWebAppCertificate.md (#15599)
The command was getting failed due to the missing space.
1 parent 3f43365 commit f16aa20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Websites/Websites/help/New-AzWebAppCertificate.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ The **New-AzWebAppCertificate** cmdlet creates an Azure App Service Managed Cert
2424

2525
### Example 1
2626
```powershell
27-
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name"ContosoCert" -HostName "www.ContosoSite.net"
27+
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name "ContosoCert" -HostName "www.ContosoSite.net"
2828
```
2929

3030
This command create an App Service Managed Certificate for the given WebApp
3131

3232
### Example 2
3333
```powershell
34-
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name"ContosoCert" -HostName "www.ContosoSite.net" -Slot "test" -AddCertBinding
34+
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name "ContosoCert" -HostName "www.ContosoSite.net" -Slot "test" -AddCertBinding
3535
```
3636

3737
This command create an App Service Managed Certificate and binds to the given WebApp Slot.
3838

3939
### Example 3
4040
```powershell
41-
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name"ContosoCert" -HostName "www.ContosoSite.net" -AddBinding
41+
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name "ContosoCert" -HostName "www.ContosoSite.net" -AddBinding
4242
```
4343

4444
This command create an App Service Managed Certificate and binds to the given WebApp.
@@ -182,4 +182,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
182182
## NOTES
183183
184184
## RELATED LINKS
185-
[Remove-AzWebAppCertificate](./Remove-AzWebAppCertificate.md)
185+
[Remove-AzWebAppCertificate](./Remove-AzWebAppCertificate.md)

0 commit comments

Comments
 (0)