-
Notifications
You must be signed in to change notification settings - Fork 2
/
boot-vm.sh
executable file
·192 lines (172 loc) · 5.59 KB
/
boot-vm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env bash
####################################################
# AZ LOGIN CHECK #
####################################################
# Making sure that one is logged in (to avoid
# surprises down the line).
if [ $(az account list | jq -r 'length') -eq 0 ]
then
echo
echo '********************************************************'
echo '* Please log in to Azure by typing "az login", and *'
echo '* repeat the "./upload-image.sh" command. *'
echo '********************************************************'
exit 1
fi
####################################################
# HELPERS #
####################################################
assign_role() {
az role assignment create \
--assignee "${principal_id}" \
--role "Owner" \
--scope "${group_id}"
}
usage() {
echo ''
echo 'USAGE: (Every switch requires an argument)'
echo ''
echo '-g --resource-group REQUIRED Created if does not exist. Will'
echo ' house a new disk and the created'
echo ' image.'
echo ''
echo '-i --image REQUIRED ID or name of an existing image.'
echo ' (See `az image list --output table`)'
echo ' or `az image list --query "[].{ID:id, Name:name}"`.)'
echo ''
echo '-n --vm-name REQUIRED The name of the new virtual machine'
echo ' to be created.'
echo ''
echo '-s --vm-size See https://azure.microsoft.com/pricing/details/virtual-machines/ for size info.'
echo ' Default value: "Standard_DS1_v2"'
echo ''
echo '-d --os-size OS disk size in GB to create.'
echo ' Default value: "42"'
echo ''
echo '-l --location Values from `az account list-locations`.'
echo ' Default value: "westus2".'
echo ''
echo 'NOTE: Brand new SSH keypair is going to be generated. To'
echo ' provide your own, edit the very last command in'
echo ' `./boot-vm.sh`.'
echo ''
};
####################################################
# SWITCHES #
####################################################
# https://unix.stackexchange.com/a/204927/85131
while [ $# -gt 0 ]; do
case "$1" in
-l|--location)
location="$2"
;;
-g|--resource-group)
resource_group="$2"
;;
-i|--image)
case "$2" in
/*)
img_id="$2"
;;
*) # image name
img_id="$(az image list \
--query "[?name=='"$2"'].{ID:id}" \
--output tsv
)"
esac
;;
-n|--vm-name)
vm_name="$2"
;;
-s|--vm-size)
vm_size="$2"
;;
-d|--os-disk-size-gb)
os_size="$2"
;;
*)
printf "***************************\n"
printf "* Error: Invalid argument *\n"
printf "***************************\n"
usage
exit 1
esac
shift
shift
done
if [ -z "${img_id}" ] || [ -z "${resource_group}" ] || [ -z "${vm_name}" ]
then
printf "************************************\n"
printf "* Error: Missing required argument *\n"
printf "************************************\n"
usage
exit 1
fi
####################################################
# DEFAULTS #
####################################################
location_d="${location:-"westus2"}"
os_size_d="${vm_size:-"42"}"
vm_size_d="${os_size:-"Standard_DS1_v2"}"
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -euxo pipefail
# Make resource group exists
if ! az group show --resource-group "${resource_group}" &>/dev/null
then
az group create \
--name "${resource_group}" \
--location "${location_d}"
fi
# (optional) identity
if ! az identity show --name "${resource_group}-identity" --resource-group "${resource_group}" &>/dev/stderr
then
az identity create \
--name "${resource_group}-identity" \
--resource-group "${resource_group}"
fi
# (optional) role assignment, to the resource group;
# bad but not really great alternatives
principal_id="$(
az identity show \
--name "${resource_group}-identity" \
--resource-group "${resource_group}" \
--output tsv --query "[principalId]"
)"
group_id="$(
az group show \
--name "${resource_group}" \
--output tsv \
--query "[id]"
)"
# As long as the `az role assignment` command fails,
# the loop will continue
# https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_03.html
# https://linuxize.com/post/bash-until-loop/
# TODO Is the loop really needed?
until assign_role;
do
echo "Retrying role assignment..."
sleep 1
done
echo "Role assignment successful"
identity_id="$(
az identity show \
--name "${resource_group}-identity" \
--resource-group "${resource_group}" \
--output tsv --query "[id]"
)"
# boot vm
az vm create \
--name "${vm_name}" \
--resource-group "${resource_group}" \
--assign-identity "${identity_id}" \
--size "${vm_size_d}" \
--os-disk-size-gb "${os_size_d}" \
--image "${img_id}" \
--admin-username "${USER}" \
--location "${location_d}" \
--storage-sku "Premium_LRS" \
--generate-ssh-keys
# This only works if `ssh-agent` is running
# --ssh-key-values "$(ssh-add -L)"
# TODO Add key options to script