-
Notifications
You must be signed in to change notification settings - Fork 95
/
main.tf
238 lines (218 loc) · 8.15 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
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
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
cmek_template_annotation = var.encryption_key != null ? { "run.googleapis.com/encryption-key" = var.encryption_key } : {}
template_annotations = merge(var.template_annotations, local.cmek_template_annotation)
}
resource "google_cloud_run_service" "main" {
provider = google-beta
name = var.service_name
location = var.location
project = var.project_id
autogenerate_revision_name = var.generate_revision_name
metadata {
labels = var.service_labels
annotations = var.service_annotations
}
template {
spec {
containers {
image = var.image
command = var.container_command
args = var.argument
ports {
name = var.ports["name"]
container_port = var.ports["port"]
}
resources {
limits = var.limits
requests = var.requests
}
dynamic "startup_probe" {
for_each = var.startup_probe != null ? [1] : []
content {
failure_threshold = var.startup_probe.failure_threshold
initial_delay_seconds = var.startup_probe.initial_delay_seconds
timeout_seconds = var.startup_probe.timeout_seconds
period_seconds = var.startup_probe.period_seconds
dynamic "http_get" {
for_each = var.startup_probe.http_get != null ? [1] : []
content {
path = var.startup_probe.http_get.path
dynamic "http_headers" {
for_each = var.startup_probe.http_get.http_headers != null ? var.startup_probe.http_get.http_headers : []
content {
name = http_headers.value["name"]
value = http_headers.value["value"]
}
}
}
}
dynamic "tcp_socket" {
for_each = var.startup_probe.tcp_socket != null ? [1] : []
content {
port = var.startup_probe.tcp_socket.port
}
}
dynamic "grpc" {
for_each = var.startup_probe.grpc != null ? [1] : []
content {
port = var.startup_probe.grpc.port
service = var.startup_probe.grpc.service
}
}
}
}
dynamic "liveness_probe" {
for_each = var.liveness_probe != null ? [1] : []
content {
failure_threshold = var.liveness_probe.failure_threshold
initial_delay_seconds = var.liveness_probe.initial_delay_seconds
timeout_seconds = var.liveness_probe.timeout_seconds
period_seconds = var.liveness_probe.period_seconds
dynamic "http_get" {
for_each = var.liveness_probe.http_get != null ? [1] : []
content {
path = var.liveness_probe.http_get.path
dynamic "http_headers" {
for_each = var.liveness_probe.http_get.http_headers != null ? var.liveness_probe.http_get.http_headers : []
content {
name = http_headers.value["name"]
value = http_headers.value["value"]
}
}
}
}
dynamic "grpc" {
for_each = var.liveness_probe.grpc != null ? [1] : []
content {
port = var.liveness_probe.grpc.port
service = var.liveness_probe.grpc.service
}
}
}
}
dynamic "env" {
for_each = var.env_vars
content {
name = env.value["name"]
value = env.value["value"]
}
}
dynamic "env" {
for_each = var.env_secret_vars
content {
name = env.value["name"]
dynamic "value_from" {
for_each = env.value.value_from
content {
secret_key_ref {
name = value_from.value.secret_key_ref["name"]
key = value_from.value.secret_key_ref["key"]
}
}
}
}
}
dynamic "volume_mounts" {
for_each = var.volume_mounts
content {
name = volume_mounts.value["name"]
mount_path = volume_mounts.value["mount_path"]
}
}
} // container
container_concurrency = var.container_concurrency # maximum allowed concurrent requests 0,1,2-N
timeout_seconds = var.timeout_seconds # max time instance is allowed to respond to a request
service_account_name = var.service_account_email
dynamic "volumes" {
for_each = var.volumes
content {
name = volumes.value["name"]
dynamic "secret" {
for_each = volumes.value.secret
content {
secret_name = secret.value["secret_name"]
items {
key = secret.value.items["key"]
path = secret.value.items["path"]
}
}
}
}
}
} // spec
metadata {
labels = var.template_labels
annotations = local.template_annotations
name = var.generate_revision_name ? null : "${var.service_name}-${var.traffic_split[0].revision_name}"
} // metadata
} // template
# User can generate multiple scenarios here
# Providing 50-50 split with revision names
# latest_revision is true only when revision_name is not provided, else its false
dynamic "traffic" {
for_each = var.traffic_split
content {
percent = lookup(traffic.value, "percent", 100)
latest_revision = lookup(traffic.value, "latest_revision", null)
revision_name = lookup(traffic.value, "latest_revision") ? null : lookup(traffic.value, "revision_name")
tag = lookup(traffic.value, "tag", null)
}
}
lifecycle {
ignore_changes = [
metadata[0].annotations["client.knative.dev/user-image"],
metadata[0].annotations["run.googleapis.com/client-name"],
metadata[0].annotations["run.googleapis.com/client-version"],
metadata[0].annotations["run.googleapis.com/operation-id"],
template[0].metadata[0].annotations["client.knative.dev/user-image"],
template[0].metadata[0].annotations["run.googleapis.com/client-name"],
template[0].metadata[0].annotations["run.googleapis.com/client-version"],
template[0].metadata[0].labels["client.knative.dev/nonce"],
]
}
}
resource "google_cloud_run_domain_mapping" "domain_map" {
for_each = toset(var.verified_domain_name)
provider = google-beta
location = google_cloud_run_service.main.location
name = each.value
project = google_cloud_run_service.main.project
metadata {
labels = var.domain_map_labels
annotations = var.domain_map_annotations
namespace = var.project_id
}
spec {
route_name = google_cloud_run_service.main.name
force_override = var.force_override
certificate_mode = var.certificate_mode
}
lifecycle {
ignore_changes = [
metadata[0].annotations["run.googleapis.com/operation-id"],
]
}
}
resource "google_cloud_run_service_iam_member" "authorize" {
count = length(var.members)
location = google_cloud_run_service.main.location
project = google_cloud_run_service.main.project
service = google_cloud_run_service.main.name
role = "roles/run.invoker"
member = var.members[count.index]
}