You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB
Bash

5 years ago
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
# shellcheck disable=SC1090,SC1091
5 years ago
#
# Author: Hari Sekhon
# Date: 2020-03-06 16:36:42 +0000 (Fri, 06 Mar 2020)
#
2 years ago
# https://github.com/HariSekhon/DevOps-Bash-tools
5 years ago
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
2 years ago
# https://www.linkedin.com/in/HariSekhon
5 years ago
#
# ============================================================================ #
# A z u r e
# ============================================================================ #
srcdir="${srcdir:-$(dirname "${BASH_SOURCE[0]}")/..}"
# shellcheck disable=SC1090,SC1091
5 years ago
#type add_PATH &>/dev/null || . "$srcdir/.bash.d/paths.sh"
2 years ago
# Azure CLI from script install, installs to $HOME/lib and $HOME/bin
if [ -f ~/lib/azure-cli/az.completion ]; then
source ~/lib/azure-cli/az.completion
fi
5 years ago
# assh is an alias to awless ssh
azssh(){
5 years ago
local ip
ip="$(az vm show --name "$1" -d --query "[publicIps]" -o tsv)"
ssh azureuser@"$ip"
}