Skip to content

Commit

Permalink
BUG - Small changes to ARM templates for
Browse files Browse the repository at this point in the history
consistency
  • Loading branch information
MichaelBriggs-Coralogix committed Feb 22, 2024
1 parent 52610d9 commit 692d55d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions BlobViaEventGrid/ARM/BlobViaEventGrid.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"parameters": {
"CoralogixRegion": {
"type": "string",
"defaultValue": "Europe",
"defaultValue": "Europe(eu-west-1)",
"allowedValues": [
"Europe(eu-west-1)",
"US(us-east-2)",
Expand Down Expand Up @@ -105,7 +105,7 @@
"CoralogixURL": "[if(equals(parameters('CoralogixRegion'), 'Custom'), parameters('CustomURL'), if(equals(parameters('CoralogixRegion'), 'Europe(eu-west-1)'), 'https://ingress.coralogix.com/api/v1/logs', if(equals(parameters('CoralogixRegion'), 'US(us-east-2)'), 'https://ingress.coralogix.us/api/v1/logs', if(equals(parameters('CoralogixRegion'), 'US2(us-west-2)'), 'https://ingress.cx498.coralogix.com/api/v1/logs', if(equals(parameters('CoralogixRegion'), 'Europe2(eu-north-1)'), 'https://ingress.eu2.coralogix.com/api/v1/logs', if(equals(parameters('CoralogixRegion'), 'India(ap-south-1)'), 'https://ingress.coralogix.in/api/v1/logs', if(equals(parameters('CoralogixRegion'), 'Singapore(ap-southeast-1)'), 'https://ingress.coralogixsg.com/api/v1/logs', 'NULL')))))))]",
"functionAppName": "[format('BlobStorage-{0}', uniqueString(concat(resourceGroup().id, parameters('StorageAccountName'), parameters('BlobContainerName'))))]",
"functionAppResourceGroupName": "[resourceGroup().name]",
"functionAppLocation": "[resourceGroup().location]",
"location": "[resourceGroup().location]",
"hostingPlanName": "[variables('functionAppName')]",
"applicationInsightsName": "[variables('functionAppName')]",
"functionStorageAccountName": "[format('{0}azfunctions', uniqueString(resourceGroup().id))]",
Expand All @@ -119,7 +119,7 @@
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2022-05-01",
"name": "[variables('functionStorageAccountName')]",
"location": "[variables('functionAppLocation')]",
"location": "[variables('location')]",
"sku": {
"name": "Standard_LRS"
},
Expand All @@ -129,7 +129,7 @@
"type": "Microsoft.Web/serverfarms",
"apiVersion": "2022-03-01",
"name": "[variables('hostingPlanName')]",
"location": "[variables('functionAppLocation')]",
"location": "[variables('location')]",
"sku": {
"name": "[variables('sku')]",
"tier": "[if(equals(parameters('FunctionAppServicePlanType'), 'Consumption'), 'Dynamic', 'ElasticPremium')]"
Expand Down Expand Up @@ -172,7 +172,7 @@
"type": "Microsoft.Web/sites",
"apiVersion": "2022-03-01",
"name": "[variables('functionAppName')]",
"location": "[variables('functionAppLocation')]",
"location": "[variables('location')]",
"kind": "functionapp,linux",
"properties": {
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
Expand Down
2 changes: 1 addition & 1 deletion DiagnosticData/ARM/DiagnosticData.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"parameters": {
"CoralogixRegion": {
"type": "string",
"defaultValue": "Europe",
"defaultValue": "Europe(eu-west-1)",
"allowedValues": [
"Europe(eu-west-1)",
"US(us-east-2)",
Expand Down
2 changes: 1 addition & 1 deletion StorageQueue/ARM/StorageQueue.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"parameters": {
"CoralogixRegion": {
"type": "string",
"defaultValue": "Europe",
"defaultValue": "Europe(eu-west-1)",
"allowedValues": [
"Europe(eu-west-1)",
"US(us-east-2)",
Expand Down

0 comments on commit 692d55d

Please sign in to comment.