Skip to content

Commit 5571e0f

Browse files
committed
Fix(runtime): Fixing deprecated runtime versions
1 parent 7cda6dc commit 5571e0f

File tree

3 files changed

+48
-48
lines changed

3 files changed

+48
-48
lines changed

gcp-py-functions/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
entry_point="get_demo",
6262
environment_variables=config_values,
6363
region="us-central1",
64-
runtime="python37",
64+
runtime="python313",
6565
source_archive_bucket=bucket.name,
6666
source_archive_object=source_archive_object.name,
6767
trigger_http=True,

gcp-py-serverless-raw/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
py_function = cloudfunctions.Function(
1313
"python-func",
1414
source_archive_bucket=bucket.name,
15-
runtime="python37",
15+
runtime="python312",
1616
source_archive_object=py_bucket_object.name,
1717
entry_point="handler",
1818
trigger_http=True,

gcp-ts-serverless-raw/index.ts

+46-46
Original file line numberDiff line numberDiff line change
@@ -4,89 +4,89 @@ import * as gcp from "@pulumi/gcp";
44
import { asset } from "@pulumi/pulumi";
55

66
const bucket = new gcp.storage.Bucket("bucket", {
7-
location: "US",
7+
location: "US",
88
});
99

1010
// Google Cloud Function in Python
1111

1212
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+
}),
1717
});
1818

1919
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: "python312",
22+
sourceArchiveObject: bucketObjectPython.name,
23+
entryPoint: "handler",
24+
triggerHttp: true,
25+
availableMemoryMb: 128,
2626
});
2727

2828
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",
3434
});
3535

3636
export const pythonEndpoint = functionPython.httpsTriggerUrl;
3737

3838
// Google Cloud Function in Go
3939

4040
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+
}),
4545
});
4646

4747
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,
5454
});
5555

5656
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",
6262
});
6363

6464
export const goEndpoint = functionGo.httpsTriggerUrl;
6565

6666
// Google Cloud Function in TypeScript
6767

6868
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+
}),
7373
});
7474

7575
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,
8282
});
8383

8484
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",
9090
});
9191

9292
export const tsEndpoint = tsFunction.httpsTriggerUrl;

0 commit comments

Comments
 (0)