< Back

Add-AzureApplicationGatewaySslCertificate

Wed Jan 30, 2019 5:42 pm

NAME Add-AzureApplicationGatewaySslCertificate



SYNOPSIS

Adds ssl certificate to application gateway





SYNTAX

Add-AzureApplicationGatewaySslCertificate [-Name] <String> [-CertificateName] <String> [-Password] <String> [-CertificateFile] <String>

[<CommonParameters>]





DESCRIPTION

The Add-AzureApplicationGatewaySslCertificate cmdlet adds the ssl certificate to an application gateway





PARAMETERS

-Name <String>

Name of application gateway



Required? true

Position? 0

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-CertificateName <String>

Name of ssl certificate that is being added



Required? true

Position? 1

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-Password <String>

Password of ssl certificate



Required? true

Position? 2

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-CertificateFile <String>

Path of ssl certificate file



Required? true

Position? 3

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

System.String







OUTPUTS

Microsoft.WindowsAzure.Management.ApplicationGateway.Models.ApplicationGatewayOperationResponse







NOTES







Keywords: azure, azuresm, servicemanagement, management, service, network, networking





-------------------------- Example 1 --------------------------



PS C:\\> Add-AzureApplicationGatewaySslCertificate -Name "gatewayName" -CertificateName "sslCertificateName" -Password "xxxx" -CertificateFile

"c:\\Certs\\sslCertificate.pfx"



Adding certificate using named parameters

-------------------------- Example 2 --------------------------



PS C:\\> Add-AzureApplicationGatewaySslCertificate "gatewayName" "sslCertificateName" "xxxx" "c:\\Certs\\sslCertificate.pfx"



Adding certificate using positional parameters



RELATED LINKS