@@ -4,89 +4,89 @@ import * as gcp from "@pulumi/gcp";
4
4
import { asset } from "@pulumi/pulumi" ;
5
5
6
6
const bucket = new gcp . storage . Bucket ( "bucket" , {
7
- location : "US" ,
7
+ location : "US" ,
8
8
} ) ;
9
9
10
10
// Google Cloud Function in Python
11
11
12
12
const bucketObjectPython = new gcp . storage . BucketObject ( "python-zip" , {
13
- bucket : bucket . name ,
14
- source : new asset . AssetArchive ( {
15
- "." : new asset . FileArchive ( "./pythonfunc" ) ,
16
- } ) ,
13
+ bucket : bucket . name ,
14
+ source : new asset . AssetArchive ( {
15
+ "." : new asset . FileArchive ( "./pythonfunc" ) ,
16
+ } ) ,
17
17
} ) ;
18
18
19
19
const functionPython = new gcp . cloudfunctions . Function ( "python-func" , {
20
- sourceArchiveBucket : bucket . name ,
21
- runtime : "python37 " ,
22
- sourceArchiveObject : bucketObjectPython . name ,
23
- entryPoint : "handler" ,
24
- triggerHttp : true ,
25
- availableMemoryMb : 128 ,
20
+ sourceArchiveBucket : bucket . name ,
21
+ runtime : "python313 " ,
22
+ sourceArchiveObject : bucketObjectPython . name ,
23
+ entryPoint : "handler" ,
24
+ triggerHttp : true ,
25
+ availableMemoryMb : 128 ,
26
26
} ) ;
27
27
28
28
const pyInvoker = new gcp . cloudfunctions . FunctionIamMember ( "py-invoker" , {
29
- project : functionPython . project ,
30
- region : functionPython . region ,
31
- cloudFunction : functionPython . name ,
32
- role : "roles/cloudfunctions.invoker" ,
33
- member : "allUsers" ,
29
+ project : functionPython . project ,
30
+ region : functionPython . region ,
31
+ cloudFunction : functionPython . name ,
32
+ role : "roles/cloudfunctions.invoker" ,
33
+ member : "allUsers" ,
34
34
} ) ;
35
35
36
36
export const pythonEndpoint = functionPython . httpsTriggerUrl ;
37
37
38
38
// Google Cloud Function in Go
39
39
40
40
const bucketObjectGo = new gcp . storage . BucketObject ( "go-zip" , {
41
- bucket : bucket . name ,
42
- source : new asset . AssetArchive ( {
43
- "." : new asset . FileArchive ( "./gofunc" ) ,
44
- } ) ,
41
+ bucket : bucket . name ,
42
+ source : new asset . AssetArchive ( {
43
+ "." : new asset . FileArchive ( "./gofunc" ) ,
44
+ } ) ,
45
45
} ) ;
46
46
47
47
const functionGo = new gcp . cloudfunctions . Function ( "go-func" , {
48
- sourceArchiveBucket : bucket . name ,
49
- runtime : "go120 " ,
50
- sourceArchiveObject : bucketObjectGo . name ,
51
- entryPoint : "Handler" ,
52
- triggerHttp : true ,
53
- availableMemoryMb : 128 ,
48
+ sourceArchiveBucket : bucket . name ,
49
+ runtime : "go123 " ,
50
+ sourceArchiveObject : bucketObjectGo . name ,
51
+ entryPoint : "Handler" ,
52
+ triggerHttp : true ,
53
+ availableMemoryMb : 128 ,
54
54
} ) ;
55
55
56
56
const goInvoker = new gcp . cloudfunctions . FunctionIamMember ( "go-invoker" , {
57
- project : functionGo . project ,
58
- region : functionGo . region ,
59
- cloudFunction : functionGo . name ,
60
- role : "roles/cloudfunctions.invoker" ,
61
- member : "allUsers" ,
57
+ project : functionGo . project ,
58
+ region : functionGo . region ,
59
+ cloudFunction : functionGo . name ,
60
+ role : "roles/cloudfunctions.invoker" ,
61
+ member : "allUsers" ,
62
62
} ) ;
63
63
64
64
export const goEndpoint = functionGo . httpsTriggerUrl ;
65
65
66
66
// Google Cloud Function in TypeScript
67
67
68
68
const tsBucketObject = new gcp . storage . BucketObject ( "ts-zip" , {
69
- bucket : bucket . name ,
70
- source : new asset . AssetArchive ( {
71
- "." : new asset . FileArchive ( "./typescriptfunc" ) ,
72
- } ) ,
69
+ bucket : bucket . name ,
70
+ source : new asset . AssetArchive ( {
71
+ "." : new asset . FileArchive ( "./typescriptfunc" ) ,
72
+ } ) ,
73
73
} ) ;
74
74
75
75
const tsFunction = new gcp . cloudfunctions . Function ( "ts-func" , {
76
- sourceArchiveBucket : bucket . name ,
77
- runtime : "nodejs16 " ,
78
- sourceArchiveObject : tsBucketObject . name ,
79
- entryPoint : "handler" ,
80
- triggerHttp : true ,
81
- availableMemoryMb : 128 ,
76
+ sourceArchiveBucket : bucket . name ,
77
+ runtime : "nodejs22 " ,
78
+ sourceArchiveObject : tsBucketObject . name ,
79
+ entryPoint : "handler" ,
80
+ triggerHttp : true ,
81
+ availableMemoryMb : 128 ,
82
82
} ) ;
83
83
84
84
const tsInvoker = new gcp . cloudfunctions . FunctionIamMember ( "ts-invoker" , {
85
- project : tsFunction . project ,
86
- region : tsFunction . region ,
87
- cloudFunction : tsFunction . name ,
88
- role : "roles/cloudfunctions.invoker" ,
89
- member : "allUsers" ,
85
+ project : tsFunction . project ,
86
+ region : tsFunction . region ,
87
+ cloudFunction : tsFunction . name ,
88
+ role : "roles/cloudfunctions.invoker" ,
89
+ member : "allUsers" ,
90
90
} ) ;
91
91
92
92
export const tsEndpoint = tsFunction . httpsTriggerUrl ;
0 commit comments