-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathazure-deploy.sh
58 lines (50 loc) · 1.45 KB
/
azure-deploy.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
#!/bin/bash
set -euo pipefail
# Load values from .env variable
FILE=".env"
if [[ -f $FILE ]]; then
export $(egrep . $FILE | xargs -n1)
else
cat << EOF > .env
ResourceGroup=""
AppName=""
Location=""
ConnectionStrings__DefaultConnection=""
EOF
echo "Enviroment file not detected.";
echo "Please configure values for your environment in the created .env file";
echo "and run the script again.";
exit 1;
fi
# Change this if you are using your own github repository
gitSource="https://github.com/Azure-Samples/azure-sql-db-sync-api-change-tracking.git"
# Make sure connection string variable is set
if [[ -z "${ConnectionStrings__DefaultConnection:-}" ]]; then
echo "Please make sure Azure SQL connection string is set in .env file";
exit 1;
fi
echo "Creating Resource Group...";
az group create \
-n $ResourceGroup \
-l $Location
echo "Creating Application Service Plan...";
az appservice plan create \
-g $ResourceGroup \
-n "linux-plan" \
--sku B1 \
--is-linux
echo "Creating Web Application...";
az webapp create \
-g $ResourceGroup \
-n $AppName \
--plan "linux-plan" \
--runtime "DOTNETCORE|3.0" \
--deployment-source-url $gitSource \
--deployment-source-branch master
echo "Configuring Connection String...";
az webapp config connection-string set \
-g $ResourceGroup \
-n $AppName \
--settings DefaultConnection=$ConnectionStrings__DefaultConnection \
--connection-string-type=SQLAzure
echo "Done."