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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
|
# VARIABLES
locals {
deploy_ui_cf_name = "deploy-ui-gcs"
deploy_ui_topic = "deploy-ui-gcs"
artifact_bucket_name = "gh-artifacts"
ui_name = "ui"
runner_api_name = "runner-api"
example_api_name = "example-api"
example_db_name = "example-db"
}
variable "project" {
type = string
}
variable "region" {
type = string
}
variable "zone" {
type = string
}
variable "credentials" {
type = string
}
variable "cloud_run_location" {
type = string
}
variable "gcs_location" {
type = string
}
variable "gh_deploy_sa" {
type = string
}
variable "runner_api_image" {
type = string
}
variable "example_api_image" {
type = string
}
variable "ui_build_revision" {
type = string
}
variable "ui_dns_name" {
type = string
}
variable "example_db_api_user_password" {
type = string
sensitive = true
}
variable "nr_license_key" {
type = string
sensitive = true
}
# TF BACKEND
terraform {
backend "gcs" {
bucket = "slam-lang-tf-state"
prefix = "terraform/state"
credentials = "sa.json"
}
}
provider "google" {
project = var.project
region = var.region
zone = var.zone
credentials = var.credentials
}
# DEPLOYMENT INFRA
resource "google_storage_bucket" "gh-artifacts" {
name = "${var.project}-${local.artifact_bucket_name}"
location = var.gcs_location
force_destroy = true
uniform_bucket_level_access = true
}
resource "google_pubsub_schema" "deploy-ui-gcs" {
name = "${local.deploy_ui_topic}-schema"
type = "AVRO"
definition = <<-EOT
{
"type": "record",
"name": "Avro",
"fields": [
{
"name": "revision",
"type": "string"
}
]
}
EOT
}
resource "google_pubsub_topic" "deploy-ui-gcs" {
name = local.deploy_ui_topic
depends_on = [google_pubsub_schema.deploy-ui-gcs]
schema_settings {
schema = "projects/${var.project}/schemas/${google_pubsub_schema.deploy-ui-gcs.name}"
encoding = "JSON"
}
}
resource "google_pubsub_schema" "deploy-ui-gcs-result" {
name = "${local.deploy_ui_topic}-result-schema"
type = "AVRO"
definition = <<-EOT
{
"type": "record",
"name": "Avro",
"fields": [
{
"name": "revision",
"type": "string"
},
{
"name": "ok",
"type": "boolean"
}
]
}
EOT
}
resource "google_pubsub_topic" "deploy-ui-gcs-result" {
name = "${local.deploy_ui_topic}-result"
depends_on = [google_pubsub_schema.deploy-ui-gcs-result]
schema_settings {
schema = "projects/${var.project}/schemas/${google_pubsub_schema.deploy-ui-gcs-result.name}"
encoding = "JSON"
}
}
resource "google_pubsub_subscription" "deploy-ui-gcs-result" {
name = "${local.deploy_ui_topic}-result-sub"
topic = google_pubsub_topic.deploy-ui-gcs-result.name
message_retention_duration = "604800s" # 7 days
retain_acked_messages = false
ack_deadline_seconds = 20
expiration_policy {
ttl = ""
}
retry_policy {
minimum_backoff = "10s"
}
enable_message_ordering = false
}
resource "null_resource" "cloud-function-deploy-ui-gcs" {
triggers = {
version = jsondecode(file("deploy-ui-gcs/package.json")).version
name = local.deploy_ui_cf_name
region = var.cloud_run_location
topic = local.deploy_ui_topic
service-account = var.gh_deploy_sa
}
depends_on = [
google_storage_bucket.gh-artifacts,
google_pubsub_topic.deploy-ui-gcs,
google_pubsub_subscription.deploy-ui-gcs-result,
]
provisioner "local-exec" {
command = <<-EOT
cd deploy-ui-gcs
gcloud functions deploy ${self.triggers.name} \
--region ${self.triggers.region} \
--trigger-topic ${self.triggers.topic} \
--service-account=${self.triggers.service-account} \
--runtime=nodejs16
EOT
}
provisioner "local-exec" {
when = destroy
command = <<-EOT
cd deploy-ui-gcs
gcloud functions delete ${self.triggers.name} \
--region ${self.triggers.region} \
EOT
}
}
# FRONTEND UI
resource "google_storage_bucket" "ui" {
name = "${var.project}-${local.ui_name}"
location = var.gcs_location
force_destroy = true
uniform_bucket_level_access = true
website {
main_page_suffix = "index.html"
}
cors {
origin = ["*"]
method = ["GET", "HEAD", "PUT", "POST", "DELETE"]
response_header = ["*"]
max_age_seconds = 3600
}
}
data "google_iam_policy" "gcs_allUsers_viewer" {
binding {
role = "roles/storage.objectViewer"
members = [
"allUsers",
]
}
}
resource "google_storage_bucket_iam_policy" "ui" {
bucket = google_storage_bucket.ui.name
policy_data = data.google_iam_policy.gcs_allUsers_viewer.policy_data
}
resource "null_resource" "ui-content" {
triggers = {
ui_build_revision = var.ui_build_revision
}
depends_on = [
null_resource.cloud-function-deploy-ui-gcs,
]
provisioner "local-exec" {
command = <<-EOT
which npm
cd deploy-ui-gcs
npm run deploy "${var.ui_build_revision}"
EOT
}
}
resource "google_compute_backend_bucket" "ui" {
name = local.ui_name
description = ""
bucket_name = google_storage_bucket.ui.name
enable_cdn = false
}
resource "google_compute_url_map" "ui" {
name = local.ui_name
project = var.project
provider = google-beta
default_service = google_compute_backend_bucket.ui.id
}
resource "google_compute_managed_ssl_certificate" "ui" {
name = local.ui_name
managed {
domains = [var.ui_dns_name]
}
}
resource "google_compute_target_https_proxy" "ui" {
name = local.ui_name
project = var.project
url_map = google_compute_url_map.ui.id
ssl_certificates = [google_compute_managed_ssl_certificate.ui.id]
}
resource "google_compute_global_address" "ui" {
provider = google-beta
project = var.project
name = local.ui_name
}
resource "google_compute_global_forwarding_rule" "ui" {
name = local.ui_name
project = var.project
provider = google-beta
ip_protocol = "TCP"
load_balancing_scheme = "EXTERNAL"
port_range = "443"
target = google_compute_target_https_proxy.ui.id
ip_address = google_compute_global_address.ui.id
}
output "ui-ip" {
value = google_compute_global_address.ui.address
}
output "ui-url" {
value = "https://${var.ui_dns_name}"
}
# RUNNER API
resource "google_cloud_run_service" "runner-api" {
name = local.runner_api_name
project = var.project
location = var.cloud_run_location
template {
spec {
containers {
image = var.runner_api_image
env {
name = "NEWRELIC_LICENSE_KEY"
value = var.nr_license_key
}
}
timeout_seconds = 7 # interpreter timeout = 5
}
metadata {
annotations = {
"autoscaling.knative.dev/maxScale" = 3
}
}
}
traffic {
percent = 100
latest_revision = true
}
}
data "google_iam_policy" "cloud_run_allUsers_invoker" {
binding {
role = "roles/run.invoker"
members = [
"allUsers",
]
}
}
resource "google_cloud_run_service_iam_policy" "runner-api" {
location = google_cloud_run_service.runner-api.location
project = google_cloud_run_service.runner-api.project
service = google_cloud_run_service.runner-api.name
policy_data = data.google_iam_policy.cloud_run_allUsers_invoker.policy_data
}
# EXAMPLE API
resource "google_cloud_run_service" "example-api" {
name = local.example_api_name
project = var.project
location = var.cloud_run_location
template {
spec {
containers {
image = var.example_api_image
env {
name = "PGHOST"
value = "/cloudsql/${google_sql_database_instance.example-db.connection_name}"
}
env {
name = "PGDATABASE"
value = google_sql_database.example-db.name
}
env {
name = "PGUSER"
value = local.example_api_name
}
env {
name = "PGPASSWORD"
value = var.example_db_api_user_password
}
env {
name = "NEWRELIC_LICENSE_KEY"
value = var.nr_license_key
}
}
timeout_seconds = 5
}
metadata {
annotations = {
"autoscaling.knative.dev/maxScale" = 3
"run.googleapis.com/cloudsql-instances" = google_sql_database_instance.example-db.connection_name
}
}
}
traffic {
percent = 100
latest_revision = true
}
depends_on = [
google_sql_user.example-db
]
}
resource "google_cloud_run_service_iam_policy" "example-api" {
location = google_cloud_run_service.example-api.location
project = google_cloud_run_service.example-api.project
service = google_cloud_run_service.example-api.name
policy_data = data.google_iam_policy.cloud_run_allUsers_invoker.policy_data
}
# EXAMPLE DB
resource "google_sql_database_instance" "example-db" {
name = local.example_db_name
database_version = "POSTGRES_14"
region = var.region
settings {
tier = "db-f1-micro"
availability_type = "ZONAL"
location_preference {
zone = var.zone
}
disk_size = 10
backup_configuration {
enabled = false
}
ip_configuration {
ipv4_enabled = true
}
}
}
resource "google_sql_database" "example-db" {
name = local.example_db_name
instance = google_sql_database_instance.example-db.name
}
resource "google_sql_user" "example-db" {
name = local.example_api_name
instance = google_sql_database_instance.example-db.name
password = var.example_db_api_user_password
}
|