Day 27: Deploying Virtual Machines in a Private Virtual Network

I tried to complete the Day 27 task on 100 Days of Cloud in azure several times but i was failed. This is the NSG rule that i’ve tried to execute " az network nsg rule create
–resource-group $RG
–nsg-name $NSG_NAME
–name Allow-SSH-From-VNet
–priority 100
–direction Inbound
–access Allow
–protocol Tcp
–source-address-prefix VirtualNetwork
–source-port-range “"
–destination-address-prefix "

–destination-port-range 22

" help me what’s the issue I have made and please suggest me the correct nsg rule that i have want to make success

You might want to compare your technique with this post, which might work better.