Skip to content

Commit 2a4c582

Browse files
committed
fixing json syntax errors
1 parent 148449c commit 2a4c582

File tree

7 files changed

+6
-12
lines changed

7 files changed

+6
-12
lines changed

201-vm-domain-join/azuredeploy.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"type": "string",
5050
"defaultValue": "",
5151
"metadata": {
52-
"description": "Specifies an organizational unit (OU) for the domain account. Enter the full distinguished name of the OU in quotation marks. Example: "OU=testOU; DC=domain; DC=Domain; DC=com""
52+
"description": "Specifies an organizational unit (OU) for the domain account. Enter the full distinguished name of the OU in quotation marks. Example: \"OU=testOU; DC=domain; DC=Domain; DC=com\""
5353
}
5454
},
5555
"domainJoinOptions": {
@@ -77,7 +77,6 @@
7777
"imagePublisher": "MicrosoftWindowsServer",
7878
"imageOffer": "WindowsServer",
7979
"windowsOSVersion": "2016-Datacenter",
80-
"apiVersion": "2015-06-15",
8180
"nicName": "[concat(parameters('dnsLabelPrefix'),'Nic')]",
8281
"publicIPName": "[concat(parameters('dnsLabelPrefix'),'Pip')]",
8382
"vnetID": "[resourceId(resourceGroup().name, 'Microsoft.Network/virtualNetworks', parameters('existingVNETName'))]",

201-vmss-internal-loadbalancer/azuredeploy.json

-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@
6565
"subnetName": "[concat(variables('namingInfix'), 'subnet')]",
6666
"subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]",
6767
"publicIPAddressName": "[concat(variables('namingInfix'), 'pip')]",
68-
"jumpboxName": "[concat(variables('namingInfix'), 'vm')]",
6968
"loadBalancerName": "[concat(variables('namingInfix'), 'lb')]",
70-
"publicIPAddressID": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]",
7169
"lbID": "[resourceId('Microsoft.Network/loadBalancers',variables('loadBalancerName'))]",
7270
"natPoolName": "[concat(variables('namingInfix'), 'natpool')]",
7371
"bePoolName": "[concat(variables('namingInfix'), 'bepool')]",

301-custom-images-at-scale/azuredeploy.json

-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@
134134
"addressPrefix": "10.0.0.0/16",
135135
"subnetName": "subnet",
136136
"subnetPrefix": "10.0.0.0/21",
137-
"storageAccountType": "Standard_LRS",
138137
"transferImagePublisher": "Canonical",
139138
"transferImageOffer": "UbuntuServer",
140139
"ubuntuOSVersion": "15.10",
@@ -144,7 +143,6 @@
144143
"templateLocation": "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/301-custom-images-at-scale/",
145144

146145
"sharedResourcesTemplateUri ": "[concat(variables('templateLocation'), 'shared-resources.json')]",
147-
"uploadTemplateUri": "[concat(variables('templateLocation'), 'upload.json')]",
148146
"finalTemplateUri": "[concat(variables('templateLocation'), 'final_')]",
149147

150148
"downloadTemplateURI": "[concat(variables('templateLocation'), 'download.json')]",

cloudbeesjenkins-dockerdatacenter/azuredeploy.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,13 @@
133133
}
134134
},
135135
"variables": {
136-
"deploymentApiVersion": "2015-01-01",
137136
"networkApiVersion": "2015-06-15",
138137
"storageAccountNameCloudbees": "[concat('cbstor',variables('uniqueString'))]",
139138
"storageAccountType": "Standard_LRS",
140139
"virtualNetworkName": "MyVnet",
141140
"virtualNetworkAddressPrefix": "10.0.0.0/16",
142141
"jenkinsSubnetName": "jenkins-subnet",
143142
"jenkinsSubnetPrefix": "10.0.0.0/24",
144-
"JenkinsdnsNameForPublicIP": "jenkins-0-",
145143
"ucpControllerSubnetName": "ucp-controller-subnet",
146144
"ucpControllerSubnetPrefix": "10.0.1.0/24",
147145
"ucpdtrNodeSubnetName": "ucp-node-subnet",
@@ -239,7 +237,7 @@
239237
"name": "cloudbeesDeployment",
240238
"type": "Microsoft.Resources/deployments",
241239
"dependsOn": [
242-
"['Microsoft.Resources/deployments/virtualNetworkDeployment']"
240+
"Microsoft.Resources/deployments/virtualNetworkDeployment"
243241
],
244242
"properties": {
245243
"mode": "Incremental",
@@ -310,7 +308,7 @@
310308
"name": "dockerDatacenterDeployment",
311309
"type": "Microsoft.Resources/deployments",
312310
"dependsOn": [
313-
"['Microsoft.Resources/deployments/virtualNetworkDeployment']"
311+
"Microsoft.Resources/deployments/virtualNetworkDeployment"
314312
],
315313
"properties": {
316314
"mode": "Incremental",

sql-server-2014-alwayson-existing-vnet-and-ad/nested/deploy-sql-cluster.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@
7171
"sqlNamePrefix": "[concat(parameters('namePrefix'),'-sql-')]",
7272
"sqlAvailabilitySetName": "[concat(variables('sqlNamePrefix'),'as')]",
7373
"sqlLBName": "[concat(variables('sqlNamePrefix'),'ilb')]",
74-
"sqllbID": "[resourceId('Microsoft.Network/loadBalancers',variables('sqlLBName'))]",
74+
"sqlLBId": "[resourceId('Microsoft.Network/loadBalancers',variables('sqlLBName'))]",
7575
"lbFE1": "[concat(variables('sqlNamePrefix'),'ilbfe1')]",
7676
"lbBE": "[concat(variables('sqlNamePrefix'),'ilbbe')]",
77-
"sqlLBID": "[resourceId('Microsoft.Network/loadBalancers',variables('sqlLBName'))]",
7877
"sqlLBFEConfigID1": "[concat(variables('sqllbID'),'/frontendIPConfigurations/',variables('lbFE1'))]",
7978
"sqlLBBEAddressPoolID": "[concat(variables('sqllbID'),'/backendAddressPools/',variables('lbBE'))]",
8079
"sqlAOProbe1": "[concat(variables('sqlNamePrefix'),'ilbp1')]",

zabbix-monitoring-cluster/nested/monitoringServerDistroCentOS.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
33
"contentVersion": "1.0.0.0",
4+
"parameters": {},
45
"resources": [],
56
"outputs": {
67
"imageReference": {

zabbix-monitoring-cluster/nested/monitoringServerDistroUbuntu.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
33
"contentVersion": "1.0.0.0",
4+
"parameters": {},
45
"resources": [],
56
"outputs": {
67
"imageReference": {

0 commit comments

Comments
 (0)