Google Cloud Functions in Python

This example deploys a Google Cloud Function implemented in Python.

Cloud StorageCloud Run Function
// Copyright 2016-2019, Pulumi Corporation.  All rights reserved.

import * as gcp from "@pulumi/gcp";

const greeting = new gcp.cloudfunctions.HttpCallbackFunction("greeting", {
    runtime: "nodejs20", // https://cloud.google.com/functions/docs/concepts/exec#runtimes
    callback: (req: any, res: any) => {
        res.send(`Greetings from ${req.body.name || "Google Cloud Functions"}!`);
    },
});

const invoker = new gcp.cloudfunctions.FunctionIamMember("invoker", {
    project: greeting.function.project,
    region: greeting.function.region,
    cloudFunction: greeting.function.name,
    role: "roles/cloudfunctions.invoker",
    member: "allUsers",
});

export const url = greeting.httpsTriggerUrl;

Download

git clone https://github.com/pulumi/examples
cd examples/gcp-ts-functions

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page