Skip to content

Commit 22c8826

Browse files
authored
Replace dynamic IP references with Static IP
1 parent 76d3734 commit 22c8826

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/expressroute/site-to-site-vpn-over-microsoft-peering.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Assign a public IP address for each instance of a VPN gateway.
212212
"name": "[variables('gatewayPublicIPName1')]",
213213
"location": "[resourceGroup().location]",
214214
"properties": {
215-
"publicIPAllocationMethod": "Dynamic"
215+
"publicIPAllocationMethod": "Static"
216216
},
217217
"comments": "Public IP for the first instance of the VPN gateway"
218218
},
@@ -222,7 +222,7 @@ Assign a public IP address for each instance of a VPN gateway.
222222
"name": "[variables('gatewayPublicIPName2')]",
223223
"location": "[resourceGroup().location]",
224224
"properties": {
225-
"publicIPAllocationMethod": "Dynamic"
225+
"publicIPAllocationMethod": "Static"
226226
},
227227
"comments": "Public IP for the second instance of the VPN gateway"
228228
},
@@ -276,7 +276,7 @@ This section of the template configures the VPN gateway with the required settin
276276
"ipConfigurations": [
277277
{
278278
"properties": {
279-
"privateIPAllocationMethod": "Dynamic",
279+
"privateIPAllocationMethod": "Static",
280280
"subnet": {
281281
"id": "[variables('gatewaySubnetRef')]"
282282
},
@@ -288,7 +288,7 @@ This section of the template configures the VPN gateway with the required settin
288288
},
289289
{
290290
"properties": {
291-
"privateIPAllocationMethod": "Dynamic",
291+
"privateIPAllocationMethod": "Static",
292292
"subnet": {
293293
"id": "[variables('gatewaySubnetRef')]"
294294
},

0 commit comments

Comments
 (0)