From 7ffa4c80d087cf5fc2c81ba4758059ec2b50da94 Mon Sep 17 00:00:00 2001 From: Sven Aelterman <17446043+SvenAelterman@users.noreply.github.com> Date: Thu, 11 May 2023 17:27:09 -0400 Subject: [PATCH] Correct max length of Application Gateway name Per https://learn.microsoft.com/azure/azure-resource-manager/management/resource-name-rules#microsoftnetwork, it's 80 characters. --- modules/Network/applicationGateways/main.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Network/applicationGateways/main.bicep b/modules/Network/applicationGateways/main.bicep index b295ae2f59..6c5f3e8f41 100644 --- a/modules/Network/applicationGateways/main.bicep +++ b/modules/Network/applicationGateways/main.bicep @@ -1,5 +1,5 @@ @description('Required. Name of the Application Gateway.') -@maxLength(24) +@maxLength(80) param name string @description('Optional. Location for all resources.')