Skip to content

Commit

Permalink
updated GEN-UNIQUE value in parameters file
Browse files Browse the repository at this point in the history
  • Loading branch information
Zecharia Kasina (PSP) committed Aug 28, 2017
1 parent 3367ed8 commit e5175df
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 101-batchaccount-with-storage/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"contentVersion": "1.0.0.0",
"parameters": {
"batchAccountName": {
"value": "GEN_UNIQUE"
"value": "GEN-UNIQUE-12"
}
}
}
9 changes: 8 additions & 1 deletion 101-powerbi-workspace-create/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
"description": "the name of the PowerBI workspace collection name. It should match with the following regular expression: ^(?:[a-zA-Z0-9]+-?)+$ or it will raise an error. "
}
},
"powerbiWorkSpaceLocation":{
"type": "string",
"metadata": {
"description":"the location to create the powerbi workspace collection. At present this resource is available in southcentralus,northcentralus,eastus2,westus,westeurope,northeurope,brazilsouth,southeastasia,australiasoutheast,canadacentral,japaneast,uksouth,westindia locations"
},
"defaultValue": "westus"
},
"sku": {
"type": "string",
"allowedValues": [
Expand All @@ -26,7 +33,7 @@
"apiVersion": "2016-01-29",
"type": "Microsoft.PowerBI/workspaceCollections",
"name": "[parameters('powerbiWorkspaceName')]",
"location": "[resourceGroup().location]",
"location": "[parameters('powerbiWorkSpaceLocation')]",
"sku": {
"name": "[parameters('sku')]"
},
Expand Down
2 changes: 1 addition & 1 deletion 101-powerbi-workspace-create/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"contentVersion": "1.0.0.0",
"parameters": {
"powerbiWorkspaceName": {
"value": "GEN-UNIQUE"
"value": "GEN-UNIQUE-12"
},
"sku": {
"value": "S1"
Expand Down

0 comments on commit e5175df

Please sign in to comment.