-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup_gcp.sh
executable file
·92 lines (80 loc) · 3.72 KB
/
setup_gcp.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
#!/bin/bash
# Check if the gcloud command-line tool is installed
if ! command -v gcloud; then
echo "Install the Google Cloud SDK before using this script:"
echo "https://cloud.google.com/sdk/"
exit 1
fi
# Check if a project name was given at the command-line as the first argument
if [ $# -eq 0 ];then
echo "No project name given"
exit 1
fi
# If no google organization is set, determine it.
if [ -z "$GOOGLE_ORGANIZATION" ]; then
# Attempt to auto-determine the organization, if there is only 1
if [ `gcloud organizations list | grep -v "DISPLAY_NAME" | wc -l` = 1 ]; then
GOOGLE_ORGANIZATION=`gcloud organizations list | grep -v "DISPLAY_NAME" | awk '{print $2}'`
echo "Automatically determined organization $GOOGLE_ORGANIZATION"
else
if gcloud organizations list 2>&1 | grep -v "Listed 0 items"; then
# if there are no organizations, then don't fail, since it's not possible to correct
echo "No organization found. Skipping to next step."
else
gcloud organizations list
echo -e "\nFrom the list above, choose the correct orgnaization ID and set it as the GOOGLE_ORGANIZATION environment variable to continue!\n"
exit 1
fi
fi
fi
# If no google billing account is set, determine it.
if [ -z "$GOOGLE_BILLING_ACCOUNT" ]; then
# Attempt to auto-determine the organization, if there is only 1
if [ `gcloud alpha billing accounts list | grep -v "ACCOUNT_ID" | wc -l` = 1 ]; then
GOOGLE_BILLING_ACCOUNT=`gcloud alpha billing accounts list | grep -v "ACCOUNT_ID" | awk '{print $1}'`
echo "Automatically determined billing account $GOOGLE_BILLING_ACCOUNT"
else
gcloud alpha billing accounts list
echo -e "\nFrom the list above, choose the correct billing account ID and set it as the GOOGLE_BILLING_ACCOUNT environment variable to continue!\n"
exit 1
fi
fi
# Skip project creation if it already exists and we're just bootstrapping it.
if gcloud projects list | grep -v "PROJECT_ID" | grep -q "$1"; then
# we good
echo -e "Project '$1' already exists, skipping creation!"
else
# create the project
gcloud projects create "$1" --organization="$GOOGLE_ORGANIZATION"
# now we good
fi
# Set gcloud config to use the given project
gcloud config set project "$1"
# Skip billing account linking if it already exists and we're just bootstrapping it.
if gcloud alpha billing projects list --billing-account "$GOOGLE_BILLING_ACCOUNT" | grep -v "PROJECT_ID" | grep -q "$1"; then
# we good
echo -e "Project '$1' billing already exists, skipping linking!"
else
echo "Setting up '$1' with billing account $GOOGLE_BILLING_ACCOUNT"
# create the project
gcloud alpha billing projects link "$1" --billing-account "$GOOGLE_BILLING_ACCOUNT"
# now we good
fi
echo "Enabling compute engine API for project"
# Enable the compute engine API
gcloud services enable compute.googleapis.com
echo "Enabling container registry API for project"
# Enable the compute engine API
gcloud services enable containerregistry.googleapis.com
echo "Creating the Terraform service account"
# Create the service account with account.json file if it doesn't exist
gcloud iam service-accounts create terraform \
--display-name "Terraform Service Account" \
--description "Service account to use with Terraform"
echo "Adding the required IAM policy binding for the Terraform service account"
gcloud projects add-iam-policy-binding "$1" \
--member serviceAccount:"terraform@$1.iam.gserviceaccount.com" \
--role roles/editor
echo "Creating the required IAM service policy key 'account.json'"
gcloud iam service-accounts keys create account.json \
--iam-account "terraform@$1.iam.gserviceaccount.com"