grimoire

personal wiki
git clone git://git.pyratebeard.net/grimoire.git
Log | Files | Refs

commit e7cd4f7dc427f682520b9396428d15f563234756
parent 1da863bede8b402dd155d6dea1580ff14552cecc
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon, 12 Nov 2018 15:12:23 +0000

put vm creation command into pre block

Diffstat:
Mtechnology/cloud/azure.md | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/technology/cloud/azure.md b/technology/cloud/azure.md @@ -28,8 +28,15 @@ ``` -### create an Ubuntu vm called PP-WRD-TEST01 in the group P-WRD-RGRP on the PP-WRD-VNET vnet with no additional network security group, using username dburrows and public key for ssh -az vm create -g P-WRD-RGRP -n PP-WRD-TEST01 --vnet-name PP-WRG-VNET --nsg "" --image UbuntuLTS --ssh-key-value .ssh/dburrows.pub --admin-username dburrows +create an Ubuntu vm called PP-WRD-TEST01 in the group P-WRD-RGRP on the PP-WRD-VNET vnet with no additional network security group, using username dburrows and public key for ssh +``` +az vm create -g P-WRD-RGRP -n PP-WRD-TEST01 \ +--vnet-name PP-WRG-VNET \ +--nsg "" \ +--image UbuntuLTS \ +--ssh-key-value .ssh/dburrows.pub \ +--admin-username dburrows +```