-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmain.tf
More file actions
81 lines (78 loc) · 2.6 KB
/
Copy pathmain.tf
File metadata and controls
81 lines (78 loc) · 2.6 KB
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
/**
* Copyright 2025 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 {
_ctx_p = "$"
ctx = {
for k, v in var.context : k => {
for kk, vv in v : "${local._ctx_p}${k}:${kk}" => vv
} if !endswith(k, "_vars")
}
connector = (
var.vpc_connector_create != null
? google_vpc_access_connector.connector[0].id
: try(var.revision.vpc_access.connector, null)
)
_invoke_command = {
JOB = <<-EOT
gcloud run jobs execute \
--project ${var.project_id} \
--region ${var.region} \
--wait ${local.resource.name} \
--args=
EOT
WORKERPOOL = ""
SERVICE = <<-EOT
curl -H "Authorization: bearer $(gcloud auth print-identity-token)" \
${local.resource.uri} \
-X POST -d 'data'
EOT
}
invoke_command = local._invoke_command[var.type]
location = lookup(local.ctx.locations, var.region, var.region)
project_id = lookup(local.ctx.project_ids, var.project_id, var.project_id)
multi_region_regions = (
try(var.service_config.multi_region_settings.regions, null) == null
? null
: [
for r in var.service_config.multi_region_settings.regions :
lookup(local.ctx.locations, r, r)
]
)
revision_name = (
var.revision.name == null ? null : "${var.name}-${var.revision.name}"
)
_resource = {
"JOB" : (
var.managed_revision ?
try(google_cloud_run_v2_job.job[0], null) : try(google_cloud_run_v2_job.job_unmanaged[0], null)
)
"WORKERPOOL" : (
var.managed_revision ?
try(google_cloud_run_v2_worker_pool.default_managed[0], null) : try(google_cloud_run_v2_worker_pool.default_unmanaged[0], null)
)
"SERVICE" : (
var.managed_revision ?
try(google_cloud_run_v2_service.service[0], null) : try(google_cloud_run_v2_service.service_unmanaged[0], null)
)
}
resource = {
id = local._resource[var.type].id
location = local._resource[var.type].location
name = local._resource[var.type].name
project = local._resource[var.type].project
uri = var.type == "SERVICE" ? local._resource[var.type].uri : ""
}
}