1. Packages
  2. Google Cloud (GCP) Classic
  3. How-to Guides
  4. Google Cloud Functions in Go deployed with Go
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

Google Cloud Functions in Go deployed with Go

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    View Code Deploy

    This example deploys a Google Cloud Function implemented in Go. Pulumi program is also 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:

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

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

      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:

      pulumi destroy --yes
      pulumi stack rm --yes
      
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi