This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
forked from Kong/kong-terraform-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloud-init.sh
290 lines (245 loc) · 7.56 KB
/
cloud-init.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#!/bin/sh
# Function to grab SSM parameters
aws_get_parameter() {
aws ssm --region ${REGION} get-parameter \
--name "${PARAMETER_PATH}/$1" \
--with-decryption \
--output text \
--query Parameter.Value 2>/dev/null
}
# Enable auto updates
echo "Enabling auto updates"
echo unattended-upgrades unattended-upgrades/enable_auto_updates boolean true \
| debconf-set-selections
dpkg-reconfigure -f noninteractive unattended-upgrades
# Installing decK
# https://github.com/hbagdi/deck
curl -sL https://github.com/hbagdi/deck/releases/download/v${DECK_VERSION}/deck_${DECK_VERSION}_linux_amd64.tar.gz \
-o deck.tar.gz
tar zxf deck.tar.gz deck
sudo mv deck /usr/local/bin
sudo chown root:kong /usr/local/bin/deck
sudo chmod 755 /usr/local/bin/deck
# Install Kong
echo "Installing Kong"
EE_LICENSE=$(aws_get_parameter ee/license)
EE_CREDS=$(aws_get_parameter ee/bintray-auth)
if [ "$EE_LICENSE" != "placeholder" ]; then
curl -sL https://kong.bintray.com/kong-enterprise-edition-deb/dists/${EE_PKG} \
-u $EE_CREDS \
-o ${EE_PKG}
if [ ! -f ${EE_PKG} ]; then
echo "Error: Enterprise edition download failed, aborting."
exit 1
fi
dpkg -i ${EE_PKG}
cat <<EOF > /etc/kong/license.json
$EE_LICENSE
EOF
chown root:kong /etc/kong/license.json
chmod 640 /etc/kong/license.json
else
curl -sL "https://bintray.com/kong/kong-deb/download_file?file_path=${CE_PKG}" \
-o ${CE_PKG}
dpkg -i ${CE_PKG}
fi
# Setup database
echo "Setting up Kong database"
PGPASSWORD=$(aws_get_parameter "db/password/master")
DB_HOST=$(aws_get_parameter "db/host")
DB_NAME=$(aws_get_parameter "db/name")
DB_PASSWORD=$(aws_get_parameter "db/password")
export PGPASSWORD
RESULT=$(psql --host $DB_HOST --username root \
--tuples-only --no-align postgres \
<<EOF
SELECT 1 FROM pg_roles WHERE rolname='${DB_USER}'
EOF
)
if [ $? != 0 ]; then
echo "Error: Database connection failed, please configure manually"
exit 1
fi
echo $RESULT | grep -q 1
if [ $? != 0 ]; then
psql --host $DB_HOST --username root postgres <<EOF
CREATE USER ${DB_USER} WITH PASSWORD '$DB_PASSWORD';
GRANT ${DB_USER} TO root;
CREATE DATABASE $DB_NAME OWNER = ${DB_USER};
EOF
fi
unset PGPASSWORD
# Setup Configuration file
cat <<EOF > /etc/kong/kong.conf
# kong.conf, Kong configuration file
# Written by Dennis Kelly <[email protected]>
# Updated by Dennis Kelly <[email protected]>
#
# 2020-01-23: Support for EE Kong Manager Auth
# 2019-09-30: Support for 1.x releases and Dev Portal
# 2018-03-13: Support for 0.12 and load balancing
# 2017-06-20: Initial release
#
# Notes:
# - See kong.conf.default for further information
# Database settings
database = postgres
pg_host = $DB_HOST
pg_user = ${DB_USER}
pg_password = $DB_PASSWORD
pg_database = $DB_NAME
# Load balancer headers
real_ip_header = X-Forwarded-For
trusted_ips = 0.0.0.0/0
# SSL terminiation is performed by load balancers
proxy_listen = 0.0.0.0:8000
# For /status to load balancers
admin_listen = 0.0.0.0:8001
EOF
chmod 640 /etc/kong/kong.conf
chgrp kong /etc/kong/kong.conf
if [ "$EE_LICENSE" != "placeholder" ]; then
cat <<EOF >> /etc/kong/kong.conf
# Enterprise Edition Settings
# SSL terminiation is performed by load balancers
admin_gui_listen = 0.0.0.0:8002
portal_gui_listen = 0.0.0.0:8003
portal_api_listen = 0.0.0.0:8004
admin_api_uri = https://${MANAGER_HOST}:8444
admin_gui_url = https://${MANAGER_HOST}:8445
portal = on
portal_gui_protocol = https
portal_gui_host = ${PORTAL_HOST}:8446
portal_api_url = http://${PORTAL_HOST}:8447
portal_cors_origins = https://${PORTAL_HOST}:8446, https://${PORTAL_HOST}:8447
vitals = on
EOF
for DIR in gui lib portal; do
chown -R kong:kong /usr/local/kong/$DIR
done
else
# CE does not create the kong directory
mkdir /usr/local/kong
fi
chown root:kong /usr/local/kong
chmod 2775 /usr/local/kong
# Initialize Kong
echo "Initializing Kong"
if [ "$EE_LICENSE" != "placeholder" ]; then
ADMIN_TOKEN=$(aws_get_parameter "ee/admin/token")
sudo -u kong KONG_PASSWORD=$ADMIN_TOKEN kong migrations bootstrap
else
sudo -u kong kong migrations bootstrap
fi
cat <<'EOF' > /usr/local/kong/nginx.conf
worker_processes auto;
daemon off;
pid pids/nginx.pid;
error_log logs/error.log notice;
worker_rlimit_nofile 65536;
events {
worker_connections 8192;
multi_accept on;
}
http {
include nginx-kong.conf;
}
EOF
chown root:kong /usr/local/kong/nginx.conf
# Log rotation
cat <<'EOF' > /etc/logrotate.d/kong
/usr/local/kong/logs/*.log {
rotate 14
daily
compress
missingok
notifempty
create 640 kong kong
sharedscripts
postrotate
/usr/bin/sv 1 /etc/sv/kong
endscript
}
EOF
# Start Kong under supervision
echo "Starting Kong under supervision"
mkdir -p /etc/sv/kong /etc/sv/kong/log
cat <<'EOF' > /etc/sv/kong/run
#!/bin/sh -e
exec 2>&1
ulimit -n 65536
sudo -u kong kong prepare
exec chpst -u kong /usr/local/openresty/nginx/sbin/nginx -p /usr/local/kong -c nginx.conf
EOF
cat <<'EOF' > /etc/sv/kong/log/run
#!/bin/sh -e
[ -d /var/log/kong ] || mkdir -p /var/log/kong
chown kong:kong /var/log/kong
exec chpst -u kong /usr/bin/svlogd -tt /var/log/kong
EOF
chmod 744 /etc/sv/kong/run /etc/sv/kong/log/run
cd /etc/service
ln -s /etc/sv/kong
# Verify Admin API is up
RUNNING=0
for I in 1 2 3 4 5 6 7 8 9; do
curl -s -I http://localhost:8001/status | grep -q "200 OK"
if [ $? = 0 ]; then
RUNNING=1
break
fi
sleep 1
done
if [ $RUNNING = 0 ]; then
echo "Cannot connect to admin API, avoiding further configuration."
exit 1
fi
# Enable healthchecks using a kong endpoint
curl -s -I http://localhost:8000/status | grep -q "200 OK"
if [ $? != 0 ]; then
echo "Configuring healthcheck"
curl -s -X POST http://localhost:8001/services \
-d name=status \
-d host=localhost \
-d port=8001 \
-d path=/status > /dev/null
curl -s -X POST http://localhost:8001/services/status/routes \
-d name=status \
-d 'methods[]=HEAD' \
-d 'methods[]=GET' \
-d 'paths[]=/status' > /dev/null
curl -s -X POST http://localhost:8001/services/status/plugins \
-d name=ip-restriction \
-d "config.whitelist=127.0.0.1" \
-d "config.whitelist=${VPC_CIDR_BLOCK}" > /dev/null
fi
if [ "$EE_LICENSE" != "placeholder" ]; then
echo "Configuring enterprise edition settings"
# Monitor role, endpoints, user, for healthcheck
curl -s -X GET -I http://localhost:8001/rbac/roles/monitor | grep -q "200 OK"
if [ $? != 0 ]; then
COMMENT="Load balancer access to /status"
curl -s -X POST http://localhost:8001/rbac/roles \
-d name=monitor \
-d comment="$COMMENT" > /dev/null
curl -s -X POST http://localhost:8001/rbac/roles/monitor/endpoints \
-d endpoint=/status -d actions=read \
-d comment="$COMMENT" > /dev/null
curl -s -X POST http://localhost:8001/rbac/users \
-d name=monitor -d user_token=monitor \
-d comment="$COMMENT" > /dev/null
curl -s -X POST http://localhost:8001/rbac/users/monitor/roles \
-d roles=monitor > /dev/null
# Add authentication token for /status
curl -s -X POST http://localhost:8001/services/status/plugins \
-d name=request-transformer \
-d 'config.add.headers[]=Kong-Admin-Token:monitor' > /dev/null
fi
sv stop /etc/sv/kong
cat <<EOF >> /etc/kong/kong.conf
enforce_rbac = on
admin_gui_auth = basic-auth
admin_gui_session_conf = { "secret":"${SESSION_SECRET}", "cookie_secure":false }
EOF
sv start /etc/sv/kong
fi