-
Notifications
You must be signed in to change notification settings - Fork 2
/
initial_setup.sh
executable file
·34 lines (27 loc) · 1.42 KB
/
initial_setup.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
#!/bin/bash
set -e
# This script creates the necessary registry infrastructure and configures GitHub OpenID Connect to allow
# GitHub actions to push to the registry in its CD pipeline.
usage="Usage: ./initial_setup.sh <tenantId> <subscriptionId>"
tenantId=${1:?"Missing tenantId. ${usage}"}
subId=${2:?"Missing subscriptionId. ${usage}"}
repoOwner="anthony-c-martin"
repoName="bicep-on-k8s"
rgName="bicepbuild"
rgLocation="East US"
az account set -n "$subId"
az group create \
--location "$rgLocation" \
--name "$rgName"
appCreate=$(az ad app create --display-name $rgName)
appId=$(echo $appCreate | jq -r '.appId')
appOid=$(echo $appCreate | jq -r '.id')
spCreate=$(az ad sp create --id $appId)
spId=$(echo $spCreate | jq -r '.id')
az role assignment create --role owner --subscription $subId --assignee-object-id $spId --assignee-principal-type ServicePrincipal --scope /subscriptions/$subId/resourceGroups/$rgName
repoSubject="repo:$repoOwner/$repoName:ref:refs/heads/main"
az rest --method POST --uri "https://graph.microsoft.com/beta/applications/$appOid/federatedIdentityCredentials" --body '{"name":"'$repoName'","issuer":"https://token.actions.githubusercontent.com","subject":"'$repoSubject'","description":"GitHub OIDC Connection","audiences":["api://AzureADTokenExchange"]}'
echo "Now configure the following GitHub Actions secrets:"
echo " ACR_CLIENT_ID: $appId"
echo " ACR_SUBSCRIPTION_ID: $subId"
echo " ACR_TENANT_ID: $tenantId"