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" - } - } } ] }