Skip to content

Commit

Permalink
Merge pull request #133 from sarulathaJSF4542/master
Browse files Browse the repository at this point in the history
Included all SP 6.3.24 release changes
  • Loading branch information
kumarkanagasabai authored Dec 16, 2024
2 parents 983195a + b21b7c8 commit 91320c4
Show file tree
Hide file tree
Showing 2 changed files with 244 additions and 0 deletions.
187 changes: 187 additions & 0 deletions armtemplates/v6.3.24/AzureBlobStorage-BoldReports.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"WebAppName": {
"type": "string",
"metadata": {
"description": "App name for Bold Reports Server. The name must be between 3 and 24 characters long, and can contain only numbers and lowercase letters."
}
},
"storageAccountName": {
"type": "string",
"metadata": {
"description": "Storage account name for Bold Reports Server. The name must be between 3 to 24 characters long, and can contain only numbers and lowercase letters."
}
},
"storageAccountType": {
"type": "string",
"allowedValues": [
"Standard_LRS",
"Standard_GRS",
"Standard_RAGRS"
],
"metadata": {
"description": "Type of the storage account created"
},
"defaultValue": "Standard_LRS"
}
},
"variables": {
"WebAppSvcPlanWorkerSize": "0",
"WebAppSvcPlanSKU": "Basic",
"WebAppSvcPlanName": "SyncfusionAppSvcPlan"
},
"resources": [
{
"name": "[variables('WebAppSvcPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[resourceGroup().location]",
"apiVersion": "2014-06-01",
"dependsOn": [],
"tags": {
"displayName": "AppSvcPlan"
},
"properties": {
"name": "[variables('WebAppSvcPlanName')]",
"sku": "[variables('WebAppSvcPlanSKU')]",
"workerSize": "[variables('WebAppSvcPlanWorkerSize')]"
}
},
{
"name": "[parameters('WebAppName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"apiVersion": "2015-08-01",
"dependsOn": [
"[concat('Microsoft.Web/serverfarms/', variables('WebAppSvcPlanName'))]"
],
"tags": {
"[concat('hidden-related:', resourceGroup().id, '/providers/Microsoft.Web/serverfarms/', variables('WebAppSvcPlanName'))]": "Resource",
"displayName": "WebApp"
},
"properties": {
"name": "[parameters('WebAppName')]",
"siteConfig": {
"metadata": [
{
"name": "CURRENT_STACK",
"value": "dotnet"
}
]
},
"clientAffinityEnabled": "false",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms/', variables('WebAppSvcPlanName'))]"
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "web",
"type": "config",
"dependsOn": [
"[concat('Microsoft.Web/sites/', parameters('WebAppName'))]"
],
"tags": {
"displayName": "WebAppConfig"
},
"properties": {
"netFrameworkVersion": "v6.0",
"use32BitWorkerProcess": false,
"webSocketsEnabled": true,
"alwaysOn": true,
"remoteDebuggingEnabled": false,
"virtualApplications": [
{
"virtualPath": "/",
"physicalPath": "site\\wwwroot\\idp\\web"
},
{
"virtualPath": "/api",
"physicalPath": "site\\wwwroot\\idp\\api"
},
{
"virtualPath": "/ums",
"physicalPath": "site\\wwwroot\\idp\\ums"
},
{
"virtualPath": "/reporting",
"physicalPath": "site\\wwwroot\\reporting\\web"
},
{
"virtualPath": "/reporting/api",
"physicalPath": "site\\wwwroot\\reporting\\api"
},
{
"virtualPath": "/reporting/jobs",
"physicalPath": "site\\wwwroot\\reporting\\jobs"
},
{
"virtualPath": "/reporting/viewer",
"physicalPath": "site\\wwwroot\\reporting\\viewer"
},
{
"virtualPath": "/reporting/reportservice",
"physicalPath": "site\\wwwroot\\reporting\\reportservice"
}
],
"http20Enabled": true
}
},
{
"apiVersion": "2015-08-01",
"name": "web",
"type": "sourcecontrols",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', parameters('WebAppName'))]"
],
"properties": {
"RepoUrl": "https://github.com/boldreports/bold-reports-azure.git",
"branch": "v6.3.24",
"IsManualIntegration": true
}
},
{
"name": "appsettings",
"type": "config",
"apiVersion": "2015-08-01",
"dependsOn": [
"[concat('Microsoft.Web/sites/', parameters('WebAppName'))]",
"web",
"[concat('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]"
],
"tags": {
"displayName": "WebAppSettings"
},
"properties": {
"IdP:AzureBlobStorageAccountName": "[toLower(parameters('storageAccountName'))]",
"IdP:AzureBlobServiceEndpoint": "[concat('https://',toLower(parameters('storageAccountName')), '.blob.core.windows.net/')]",
"IdP:AzureBlobStorageAccessKey": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', toLower(parameters('storageAccountName'))), providers('Microsoft.Storage', 'storageAccounts').apiVersions[0]).keys[0].value]",
"IdP:AzureBlobContainerName": "boldreportscontainer",
"IdP:AzureBlobConnectionType": "https",
"IdP:AzureBlobStorageUri": "[concat('https://',toLower(parameters('storageAccountName')), '.blob.core.windows.net/')]",
"IdP:StorageType": "AzureBlob",
"StorageType": "AzureBlob",
"IsAzureApplication": "true",
"log4net.Config": "logs\\log4net.config",
"WEBSITE_DYNAMIC_CACHE": "0",
"WEBSITE_LOAD_USER_PROFILE":"1",
"ApplicationUrl":"[concat('https://',parameters('WebAppName'), '.azurewebsites.net')]"
}
}
]
},
{
"name": "[toLower(parameters('storageAccountName'))]",
"type": "Microsoft.Storage/storageAccounts",
"location": "[resourceGroup().location]",
"apiVersion": "2015-06-15",
"dependsOn": [],
"tags": {
"displayName": "storageaccount"
},
"properties": {
"accountType": "[parameters('storageAccountType')]"
}
}
]
}
57 changes: 57 additions & 0 deletions armtemplates/v6.3.24/BoldReportsAppServiceTemplate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"WebAppName": {
"type": "string",
"maxLength": 24,
"minLength": 3,
"metadata": {
"description": "App name for Bold Reports Server. The name must be between 3 and 24 characters long, and can contain only numbers and lowercase letters."
}
},
"storageAccountName": {
"type": "string",
"maxLength": 24,
"minLength": 3,
"metadata": {
"description": "Storage account name for Report Server. The name must be between 3 to 24 characters long, and can contain only numbers and lowercase letters."
},
"defaultValue": "storageaccountname"
},
"storageAccountType": {
"type": "string",
"allowedValues": [
"Standard_LRS",
"Standard_GRS",
"Standard_RAGRS"
],
"metadata": {
"description": "Type of the storage account created"
},
"defaultValue": "Standard_LRS"
}
},
"variables": {
"templatelink": "https://raw.githubusercontent.com/boldreports/bold-reports-azure/master/armtemplates/v6.3.24/AzureBlobStorage-BoldReports.json"
},
"resources": [
{
"apiVersion": "2015-01-01",
"name": "AzureBlobStorage-BoldReports.json",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[variables('templatelink')]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"WebAppName": { "value": "[parameters('WebAppName')]" },
"storageAccountName": { "value": "[parameters('storageAccountName')]" },
"storageAccountType": { "value": "[parameters('storageAccountType')]" }
}
}
}
]
}

0 comments on commit 91320c4

Please sign in to comment.