-
Notifications
You must be signed in to change notification settings - Fork 880
/
index.ts
92 lines (75 loc) · 2.54 KB
/
index.ts
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
// Copyright 2016-2019, Pulumi Corporation. All rights reserved.
import * as gcp from "@pulumi/gcp";
import { asset } from "@pulumi/pulumi";
const bucket = new gcp.storage.Bucket("bucket", {
location: "US",
});
// Google Cloud Function in Python
const bucketObjectPython = new gcp.storage.BucketObject("python-zip", {
bucket: bucket.name,
source: new asset.AssetArchive({
".": new asset.FileArchive("./pythonfunc"),
}),
});
const functionPython = new gcp.cloudfunctions.Function("python-func", {
sourceArchiveBucket: bucket.name,
runtime: "python37",
sourceArchiveObject: bucketObjectPython.name,
entryPoint: "handler",
triggerHttp: true,
availableMemoryMb: 128,
});
const pyInvoker = new gcp.cloudfunctions.FunctionIamMember("py-invoker", {
project: functionPython.project,
region: functionPython.region,
cloudFunction: functionPython.name,
role: "roles/cloudfunctions.invoker",
member: "allUsers",
});
export const pythonEndpoint = functionPython.httpsTriggerUrl;
// Google Cloud Function in Go
const bucketObjectGo = new gcp.storage.BucketObject("go-zip", {
bucket: bucket.name,
source: new asset.AssetArchive({
".": new asset.FileArchive("./gofunc"),
}),
});
const functionGo = new gcp.cloudfunctions.Function("go-func", {
sourceArchiveBucket: bucket.name,
runtime: "go120",
sourceArchiveObject: bucketObjectGo.name,
entryPoint: "Handler",
triggerHttp: true,
availableMemoryMb: 128,
});
const goInvoker = new gcp.cloudfunctions.FunctionIamMember("go-invoker", {
project: functionGo.project,
region: functionGo.region,
cloudFunction: functionGo.name,
role: "roles/cloudfunctions.invoker",
member: "allUsers",
});
export const goEndpoint = functionGo.httpsTriggerUrl;
// Google Cloud Function in TypeScript
const tsBucketObject = new gcp.storage.BucketObject("ts-zip", {
bucket: bucket.name,
source: new asset.AssetArchive({
".": new asset.FileArchive("./typescriptfunc"),
}),
});
const tsFunction = new gcp.cloudfunctions.Function("ts-func", {
sourceArchiveBucket: bucket.name,
runtime: "nodejs16",
sourceArchiveObject: tsBucketObject.name,
entryPoint: "handler",
triggerHttp: true,
availableMemoryMb: 128,
});
const tsInvoker = new gcp.cloudfunctions.FunctionIamMember("ts-invoker", {
project: tsFunction.project,
region: tsFunction.region,
cloudFunction: tsFunction.name,
role: "roles/cloudfunctions.invoker",
member: "allUsers",
});
export const tsEndpoint = tsFunction.httpsTriggerUrl;