Set-AzApplicationGatewaySslPolicy
Modifies the SSL policy of an application gateway.
Syntax
Set-AzApplicationGatewaySslPolicy
-ApplicationGateway <PSApplicationGateway>
[-DisabledSslProtocols <String[]>]
[-PolicyType <String>]
[-PolicyName <String>]
[-CipherSuite <String[]>]
[-MinProtocolVersion <String>]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
The Set-AzApplicationGatewaySslPolicy cmdlet modifies the SSL policy of an application gateway.
Examples
Example 1
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$AppGw = Set-AzApplicationGatewaySslPolicy -ApplicationGateway $getgw -PolicyType Predefined -PolicyName AppGwSslPolicy20170401
The first command gets the application gateway named ApplicationGateway01 and stores it in the $AppGw variable. This second command modifies the ssl policy to a policy type Predefined and policy name AppGwSslPolicy20170401.
Example 2
Modifies the SSL policy of an application gateway. (autogenerated)
Set-AzApplicationGatewaySslPolicy -ApplicationGateway <PSApplicationGateway> -CipherSuite 'TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256' -MinProtocolVersion TLSv1_0 -PolicyType Predefined
Parameters
-ApplicationGateway
Specifies the application gateway of the SSL policy that this cmdlet modifies.
Type: | PSApplicationGateway |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-CipherSuite
Ssl cipher suites to be enabled in the specified order to application gateway
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with azure.
Type: | IAzureContextContainer |
Aliases: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DisabledSslProtocols
Specifies which protocols are disabled. The acceptable values for this parameter are:
- TLSv1_0
- TLSv1_1
- TLSv1_2
Type: | String[] |
Accepted values: | TLSv1_0, TLSv1_1, TLSv1_2, TLSv1_3 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MinProtocolVersion
Minimum version of Ssl protocol to be supported on application gateway
Type: | String |
Accepted values: | TLSv1_0, TLSv1_1, TLSv1_2, TLSv1_3 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PolicyName
Name of Ssl predefined policy
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PolicyType
Type of Ssl Policy
Type: | String |
Accepted values: | Predefined, Custom, CustomV2 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Outputs
Notes
- Keywords: azure, azurerm, arm, resource, management, manager, network, networking
Related Links
Azure PowerShell