-
Notifications
You must be signed in to change notification settings - Fork 379
/
main.tf
147 lines (118 loc) · 3.69 KB
/
main.tf
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
variable "gcp_project" {
type = string
}
variable "region" {
type = string
default = "us-west1"
}
provider "google" {
project = var.gcp_project
version = "~> 3.0.0-beta.1"
}
provider "google-beta" {
project = var.gcp_project
version = "~> 3.0.0-beta.1"
}
# Enable required API in the project
resource "google_project_service" "container-api" {
service = "container.googleapis.com"
}
resource "google_project_service" "spanner-api" {
service = "spanner.googleapis.com"
}
# Main cluster definition
## Force recent version for Kubernetes master
data "google_container_engine_versions" "gke-ver" {
location = var.region
version_prefix = "1.19."
}
resource "google_container_cluster" "trillian-cluster" {
provider = google-beta
name = "trillian-opensource-ci"
location = var.region
node_version = data.google_container_engine_versions.gke-ver.latest_node_version
min_master_version = data.google_container_engine_versions.gke-ver.latest_node_version
initial_node_count = 3
node_config {
machine_type = "e2-standard-2"
image_type = "COS"
workload_metadata_config {
node_metadata = "GKE_METADATA_SERVER"
}
oauth_scopes = [
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
"https://www.googleapis.com/auth/devstorage.read_only"
]
}
workload_identity_config {
identity_namespace = "${var.gcp_project}.svc.id.goog"
}
depends_on = [
google_project_service.container-api
]
}
# Spanner instance
locals {
trillian_ddl = file("${path.module}/../storage/cloudspanner/spanner.sdl")
}
resource "google_spanner_instance" "trillian-spanner" {
name = "trillian-spanner"
display_name = "Trillian Spanner Instance"
config = "regional-${var.region}"
num_nodes = 1
depends_on = [
google_project_service.spanner-api
]
}
resource "google_spanner_database" "trillian-db" {
instance = google_spanner_instance.trillian-spanner.name
name = "trillian-db"
# Format the DDL (remove comment and split the lines)
ddl = split(";", replace(replace(local.trillian_ddl, "/--.*\\n/", ""), "\n", ""))
}
# Create a GCP service account, give it access to Spanner and add a binding so that a
# kubernetes service account can use that account.
resource "google_service_account" "trillian" {
account_id = "trillian"
display_name = "Trillian service account"
}
resource "google_project_iam_binding" "trillian-sc-dbuser" {
role = "roles/spanner.databaseUser"
members = [
"serviceAccount:${google_service_account.trillian.email}",
]
}
resource "google_project_iam_binding" "trillian-sc-logwriter" {
role = "roles/logging.logWriter"
members = [
"serviceAccount:${google_service_account.trillian.email}",
]
}
resource "google_project_iam_binding" "trillian-sc-metricwriter" {
role = "roles/monitoring.metricWriter"
members = [
"serviceAccount:${google_service_account.trillian.email}",
]
}
resource "google_service_account_iam_binding" "trillian-sc-identity" {
service_account_id = google_service_account.trillian.name
role = "roles/iam.workloadIdentityUser"
members = [
"serviceAccount:${var.gcp_project}.svc.id.goog[default/trillian-svc]",
]
depends_on = [
google_container_cluster.trillian-cluster
]
}
output "next_steps" {
value = <<EOT
gcloud config set project ${var.gcp_project} && \
gcloud container clusters get-credentials cluster --region=${var.region}
EOT
description = "Command to configure Kubernetes"
}
resource "local_file" "tf-patch" {
content = templatefile("tf-patch.template.yaml", { project_id = var.gcp_project })
filename = "tf-patch.yaml"
}