Skip to content

Commit b883186

Browse files
authored
Merge pull request #292605 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 7c3a73a + d203951 commit b883186

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ param location string = resourceGroup().location
186186
187187
resource virtualNetwork 'Microsoft.Network/virtualNetworks@2024-03-01' = {
188188
name: 'exampleVNet'
189-
location: resourceGroup().location
189+
location: location
190190
properties: {
191191
addressSpace: {
192192
addressPrefixes: [
@@ -212,7 +212,7 @@ resource virtualNetwork 'Microsoft.Network/virtualNetworks@2024-03-01' = {
212212
213213
resource exampleStorage 'Microsoft.Storage/storageAccounts@2023-05-01' = {
214214
name: storageAccountName
215-
location: 'eastus'
215+
location: location
216216
sku: {
217217
name: 'Standard_LRS'
218218
}

articles/load-balancer/load-balancer-floating-ip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The Floating IP rule type is the foundation of several load balancer configurati
7070
In order to function, you configure the Guest OS for the virtual machine to receive all traffic bound for the frontend IP and port of the load balancer. Configuring the VM requires:
7171
* adding a loopback network interface
7272
* configuring the loopback with the frontend IP address of the load balancer
73-
* ensuring the system can send/receive packets on interfaces that don't have the IP address assigned to that interface.Windows systems require setting interfaces to use the "weak host" model. For Linux systems, this model is normally used by default.
73+
* ensuring the system can send/receive packets on interfaces that don't have the IP address assigned to that interface. Windows systems require setting interfaces to use the "weak host" model. For Linux systems, this model is normally used by default.
7474
* configuring the host firewall to allow traffic on the frontend IP port.
7575

7676
> [!NOTE]

0 commit comments

Comments
 (0)