Skip to main content

Google Cloud Functions in Python deployed with Go

A minimal Go Pulumi program using Google Cloud Functions.

This example lives in the pulumi/examples repository. Check out just this directory to use it:

Get started with this example
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examples
git -C pulumi-examples sparse-checkout set gcp-go-functions-raw
cd pulumi-examples/gcp-go-functions-raw

This example deploys a Google Cloud Function implemented in Python. Pulumi program is implemented in Go.

Deploying the App#

To deploy your infrastructure, follow the below steps.

Prerequisites#

  1. Install Pulumi
  2. Configure Pulumi for GCP

Steps#

  1. Create a new stack:

    $ pulumi stack init dev
  2. Set the GCP project and region:

    Terminal window
    pulumi config set gcp:project <gcp-project>
    pulumi config set gcp:region <gcp-region>
  3. Execute the pulumi program to deploy our function:

    Terminal window
    pulumi up
  4. Test our function by curl-ing the trigger URL.

    Terminal window
    curl $(pulumi stack output function)
    # "Hello World!"
  5. From there, feel free to experiment. Simply making edits and running pulumi up will incrementally update your function.

  6. Once you’ve finished experimenting, tear down your stack’s resources by destroying and removing it:

    Terminal window
    pulumi destroy --yes
    pulumi stack rm --yes

Related

The infrastructure as code platform for any cloud.