Skip to content

Commit 7cccd21

Browse files
authored
Merge pull request #148 from dipakmsft/tp2
Removed Public IP Address from bootstorm, iostorm, jetstress
2 parents 66afc2a + b5a72e8 commit 7cccd21

File tree

2 files changed

+4
-23
lines changed

2 files changed

+4
-23
lines changed

bootstorm-vm-boot-time/azuredeploy.json

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@
3737
"subnetName": "[concat('vsn', resourceGroup().name)]",
3838
"subnetPrefix": "10.0.0.0/24",
3939
"storageAccountType": "Standard_LRS",
40-
"publicIPAddressType": "Dynamic",
41-
"publicIPAddressName": "[concat('ip', resourceGroup().name)]",
42-
"uniqueDnsNameForPublicIP": "[concat('dns', resourceGroup().name)]",
4340
"uniqueStorageAccountName": "[concat('sa', resourceGroup().name)]",
4441
"uniqueStorageAccountContainerName": "[concat('sc', resourceGroup().name)]",
4542
"vmOsSku": "2012-R2-Datacenter",
@@ -69,18 +66,6 @@
6966
"accountType": "[variables('storageAccountType')]"
7067
}
7168
},
72-
{
73-
"apiVersion": "2015-06-15",
74-
"type": "Microsoft.Network/publicIPAddresses",
75-
"name": "[variables('publicIPAddressName')]",
76-
"location": "[variables('location')]",
77-
"properties": {
78-
"publicIPAllocationMethod": "[variables('publicIPAddressType')]",
79-
"dnsSettings": {
80-
"domainNameLabel": "[variables('uniqueDnsNameForPublicIP')]"
81-
}
82-
}
83-
},
8469
{
8570
"apiVersion": "2015-06-15",
8671
"type": "Microsoft.Network/networkSecurityGroups",
@@ -135,18 +120,14 @@
135120
"name": "[variables('vmNicName')]",
136121
"location": "[variables('location')]",
137122
"dependsOn": [
138-
"[concat('Microsoft.Network/publicIPAddresses/',variables('publicIPAddressName'))]",
139123
"[concat('Microsoft.Network/virtualNetworks/',variables('virtualNetworkName'))]"
140124
],
141125
"properties": {
142126
"ipConfigurations": [
143127
{
144-
"name": "ipconfigpublic",
128+
"name": "ipconfigpri",
145129
"properties": {
146130
"privateIPAllocationMethod": "Dynamic",
147-
"publicIPAddress": {
148-
"id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"
149-
},
150131
"subnet": {
151132
"id": "[variables('subnetRef')]"
152133
}

jetstress-2013-exchange-loadtest/azuredeploy.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
}
124124
},
125125
{
126-
"apiVersion": "2015-05-01-preview",
126+
"apiVersion": "2015-06-15",
127127
"type": "Microsoft.Network/networkSecurityGroups",
128128
"name": "[variables('nsgName')]",
129129
"location": "[variables('location')]",
@@ -147,7 +147,7 @@
147147
},
148148
{
149149

150-
"apiVersion": "2015-05-01-preview",
150+
"apiVersion": "2015-06-15",
151151
"type": "Microsoft.Network/virtualNetworks",
152152
"name": "[variables('virtualNetworkName')]",
153153
"location": "[variables('location')]",
@@ -172,7 +172,7 @@
172172
}
173173
},
174174
{
175-
"apiVersion": "2015-05-01-preview",
175+
"apiVersion": "2015-06-15",
176176
"type": "Microsoft.Network/networkInterfaces",
177177
"name": "[concat(variables('vmNicName'),copyIndex())]",
178178
"location": "[variables('location')]",

0 commit comments

Comments
 (0)