-
Notifications
You must be signed in to change notification settings - Fork 0
/
az.sh
37 lines (30 loc) · 913 Bytes
/
az.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
#!/bin/bash
# Úvodní proměnné
account_name=sawetestzydr00 # Název storage accountu
rg=rg-diplomka # Název resource group
location=westeurope # Název geolokace
# Přihlášení do Azure
# třeba přihlásit v prohlížeči
# možno přidat username a password jako parametry
az login
echo "Nastavuji subskripci..."
az account set \
-s "Azure for Students"
echo "Vytvářím resource group..."
az group create \
--name $rg \
--location $location
echo "Vytvářím storage account..."
az storage account create \
--name $account_name \
--resource-group $rg \
--location $location
echo "Vytvářím kontejner..."
az storage container create \
--name artifact-store \
--account-name $account_name \
--resource-group $rg
# Získání connection stringu
az storage account show-connection-string \
--name $account_name \
--resource-group $rg