Skip to content

Commit

Permalink
fixed a bug in README file
Browse files Browse the repository at this point in the history
  • Loading branch information
esvmicrosoft committed Jun 13, 2023
1 parent 415262c commit e118bf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export rg=clusterrg
export location=eastus
ssh-keygen -t rsa -b 2048 -N"" -f azureuser_key
priv_key=$(cat azureuser_key)
pub_key=$(cat azureuser_key.pub)
privkey=$(cat azureuser_key)
pubkey=$(cat azureuser_key.pub)
az group create --name $rg --location "$location"
az deployment group create --name blanktemplate --resource-group $rg --template-file HAtemp.jsonc \
--parameters parameters.json --parameters privkey="$priv_key" --parameters pubkey="$pubkey"
--parameters parameters.json --parameters privkey="$privkey" --parameters pubkey="$pubkey"
```

0 comments on commit e118bf6

Please sign in to comment.