New-AzureRmApplicationGatewaySslPolicy

Creates an SSL policy for 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

New-AzureRmApplicationGatewaySslPolicy
   [-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 New-AzureRmApplicationGatewaySslPolicy cmdlet creates an SSL policy for an application gateway.

Examples

1:

PS C:\>$sslPolicy = New-AzureRmApplicationGatewaySslPolicy -PolicyType Custom -MinProtocolVersion TLSv1_1 -CipherSuite "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", "TLS_RSA_WITH_AES_128_GCM_SHA256"

This command creates a custom policy.

Parameters

-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

None

Outputs

PSApplicationGatewaySslPolicy

Notes

  • Keywords: azure, azurerm, arm, resource, management, manager, network, networking