Set-AzureRmApplicationGatewaySslPolicy
Modifies the SSL policy of an application gateway.
Warning
The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.
Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.
Syntax
Set-AzureRmApplicationGatewaySslPolicy
-ApplicationGateway <PSApplicationGateway>
[-DisabledSslProtocols <System.Collections.Generic.List`1[System.String]>]
[-PolicyType <String>]
[-PolicyName <String>]
[-CipherSuite <System.Collections.Generic.List`1[System.String]>]
[-MinProtocolVersion <String>]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
The Set-AzureRmApplicationGatewaySslPolicy cmdlet modifies the SSL policy of an application gateway.
Examples
1:
PS C:\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
PS C:\> $AppGw = Set-AzureRmApplicationGatewaySslPolicy -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.
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: | List<T>[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: | 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: | List<T>[String] |
Accepted values: | TLSv1_0, TLSv1_1, TLSv1_2 |
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 |
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 |
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
Parameters: ApplicationGateway (ByValue)
Outputs
Notes
- Keywords: azure, azurerm, arm, resource, management, manager, network, networking