Skip to content

Commit 472b904

Browse files
Merge pull request #264180 from AjayBathini-MSFT/patch-139
(AzureCXP) fixes MicrosoftDocs/azure-docs#119168
2 parents 39e4d0e + 8df4719 commit 472b904

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

articles/virtual-machine-scale-sets/virtual-machine-scale-sets-scaling-profile.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ Once you have created the virtual machine scale set, you can manually attach vir
5959
By default, the Azure CLI will create a scale set with a scaling profile. Omit the scaling profile parameters to create a virtual machine scale set with no scaling profile.
6060

6161
```azurecli-interactive
62+
az group create
63+
--name myResourceGroup
64+
--location westus3
6265
az vmss create \
6366
--name myVmss \
6467
--resource-group myResourceGroup \
@@ -69,6 +72,9 @@ az vmss create \
6972
### [Azure PowerShell](#tab/powershell)
7073

7174
```azurepowershell-interactive
75+
New-AzResourceGroup
76+
-Name myResourceGroup
77+
-Location westus3
7278
$vmssConfig = New-AzVmssConfig
7379
-Location 'westus3'
7480
-PlatformFaultDomainCount 3

0 commit comments

Comments
 (0)