Skip to content

Commit 4ce7776

Browse files
authored
Update quickstart-create-azure-cli.md
1 parent c40fe45 commit 4ce7776

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-compute-fleet/quickstart-create-azure-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ export MY_SUBNET_ID="$(az network vnet subnet show \
6767

6868
### Set up the admin password
6969

70-
Setup a password that meets the [password requirements for Azure VMs](https://learn.microsoft.com/en-us/azure/virtual-machines/windows/faq#what-are-the-password-requirements-when-creating-a-vm-).
70+
Set up a password that meets the [password requirements for Azure VMs](https://learn.microsoft.com/en-us/azure/virtual-machines/windows/faq#what-are-the-password-requirements-when-creating-a-vm-).
7171

7272
export ADMIN_PASSWORD="Azure compliant password"
7373

7474

7575
### Create Compute Fleet
7676

77-
Setup the compute profile which will be applied to the underlying VMs.
77+
Set up the compute profile which is applied to the underlying VMs.
7878

7979
```bash
8080
export COMPUTE_PROFILE="{ 'baseVirtualMachineProfile': { 'storageProfile': { 'imageReference': { 'publisher':'canonical', 'offer':'0001-com-ubuntu-server-focal', 'sku': '20_04-lts-gen2', 'version': 'latest' } }, 'osProfile': { 'computerNamePrefix': 'vm', 'adminUsername': '$MY_USERNAME', 'adminPassword': '$ADMIN_PASSWORD'}, 'networkProfile': { 'networkInterfaceConfigurations': [{ 'name': 'nic', 'primary': 'true', 'enableIPForwarding': 'true', 'ipConfigurations': [{ 'name': 'ipc', 'subnet': { 'id': '$MY_SUBNET_ID' } }] }], 'networkApiVersion': '2020-11-01'} } }"

0 commit comments

Comments
 (0)