Skip to content

Instantly share code, notes, and snippets.

View chhans's full-sized avatar

Christian August Holm Hansen chhans

View GitHub Profile
@chhans
chhans / deploy-vm.sh
Last active February 16, 2023 08:30
Create Azure VM rerouting traffic
#!/bin/bash
if [ $# -ne 3 ]; then
echo "No argument supplied. Usage: $0 <name_to_take_over> <zone> <subscription>"
exit
fi
if [ -f "$HOME/.ssh/id_rsa.pub" ]; then
SSH_KEY="$HOME/.ssh/id_rsa.pub"