-
Notifications
You must be signed in to change notification settings - Fork 65
53 lines (47 loc) · 1.58 KB
/
sql_open-firewall-to-your-ip_README_md.yml
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
on:
schedule:
- cron: '0 4 * * 1'
workflow_dispatch:
name: 'sql/open-firewall-to-your-ip/README.md'
jobs:
validate:
runs-on: 'ubuntu-latest'
steps:
- uses: 'azure/login@v1'
with:
subscription-id: '${{ secrets.AZURE_SUBSCRIPTION_ID }}'
client-id: '${{ secrets.AZURE_CLIENT_ID }}'
tenant-id: '${{ secrets.AZURE_TENANT_ID }}'
- uses: 'actions/checkout@v3'
- run: |
if [[ -z $REGION ]]; then
export REGION=westus2
fi
if [[ -z $REGION ]]; then
export REGION=westus
fi
if [[ -z $RESOURCE_GROUP ]]; then
export RESOURCE_GROUP=joazrg-$RANDOM
echo "Using '"$RESOURCE_GROUP"' as resource group"
fi
az group create --name $RESOURCE_GROUP --location $REGION
if [[ -z $MSSQL_NAME ]]; then
export MSSQL_NAME=mssql-$RANDOM
export MSSQL_USERNAME=mssql
export MSSQL_PASSWORD=p#ssw0rd-$RANDOM
fi
az sql server create \
--admin-user $MSSQL_USERNAME \
--admin-password $MSSQL_PASSWORD \
--name $MSSQL_NAME \
--resource-group $RESOURCE_GROUP
export LOCAL_IP=`curl -s whatismyip.akamai.com`
az sql server firewall-rule create \
--resource-group $RESOURCE_GROUP \
--server $MSSQL_NAME \
--name AllowMyLocalIP \
--start-ip-address $LOCAL_IP \
--end-ip-address $LOCAL_IP
permissions:
contents: 'read'
id-token: 'write'