From 850631f00eee0ec4e8da05ad42c74de69a512dca Mon Sep 17 00:00:00 2001 From: sbwalker Date: Tue, 1 Apr 2025 13:54:39 -0400 Subject: [PATCH] removing connection string section --- azuredeploy.json | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/azuredeploy.json b/azuredeploy.json index 3c9c2958..a575d33b 100644 --- a/azuredeploy.json +++ b/azuredeploy.json @@ -241,23 +241,6 @@ "dependsOn": [ "[resourceId('Microsoft.Web/sites', parameters('BlazorWebsiteName'))]" ] - }, - // -------------------------------------------------- - // Connection Strings - // -------------------------------------------------- - { - "type": "config", - "apiVersion": "2022-03-01", - "name": "connectionstrings", - "dependsOn": [ - "[resourceId('Microsoft.Web/sites', parameters('BlazorWebsiteName'))]" - ], - "properties": { - "DefaultConnection": { - "value": "[concat('Data Source=tcp:', reference(resourceId('Microsoft.Sql/servers', parameters('sqlServerName'))).fullyQualifiedDomainName, ',1433;Initial Catalog=', parameters('sqlDatabaseName'), ';User Id=', parameters('sqlAdministratorLogin'), '@', reference(resourceId('Microsoft.Sql/servers', parameters('sqlServerName'))).fullyQualifiedDomainName, ';Password=', parameters('sqlAdministratorLoginPassword'), ';')]", - "type": "SQLAzure" - } - } } ] }