Skip to content

Commit 99e39b0

Browse files
authored
Merge pull request #208063 from brianlehr/newbranch
modified VMSS docs with sku property
2 parents a4cd32e + 464f81e commit 99e39b0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

articles/load-balancer/load-balancer-standard-virtual-machine-scale-sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ When you use the virtual machine scale set in the back-end pool of the load bala
3333

3434
## Virtual Machine Scale Set Instance-level IPs
3535

36-
When virtual machine scale sets with [public IPs per instance](../virtual-machine-scale-sets/virtual-machine-scale-sets-networking.md) are created with a load balancer in front, the SKU of the instance IPs is determined by the SKU of the Load Balancer (i.e. Basic or Standard). Note that when using a Standard Load Balancer, the individual instance IPs are all of type Standard "no-zone" (though the Load Balancer frontend could be zonal or zone-redundant).
36+
When virtual machine scale sets with [public IPs per instance](../virtual-machine-scale-sets/virtual-machine-scale-sets-networking.md) are created with a load balancer in front, the SKU of the instance IPs is determined by the SKU of the Load Balancer (i.e. Basic or Standard).
3737

3838
## Outbound rules
3939

articles/virtual-machine-scale-sets/virtual-machine-scale-sets-networking.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,15 @@ To create a scale set using an Azure template, make sure the API version of the
132132
```json
133133
"publicIpAddressConfiguration": {
134134
"name": "pub1",
135+
"sku" {
136+
"name": "Standard"
137+
},
135138
"properties": {
136139
"idleTimeoutInMinutes": 15
137140
}
138141
}
139142
```
140-
Note when virtual machine scale sets with public IPs per instance are created with a load balancer in front, the SKU of the instance IPs is determined by the SKU of the Load Balancer (i.e. Basic or Standard).
143+
Note when virtual machine scale sets with public IPs per instance are created with a load balancer in front, the of the instance IPs is determined by the SKU of the Load Balancer (i.e. Basic or Standard). If the virtual machine scale set is created without a load balancer, the SKU of the instance IPs can be set directly by using the SKU section of the template as shown above.
141144

142145
Example template using a Basic Load Balancer: [vmss-public-ip-linux](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.compute/vmss-public-ip-linux)
143146

0 commit comments

Comments
 (0)