Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 933 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 933 Bytes

Deploy

Google Cloud Functions in Python and Go Deployed with TypeScript

This example deploys two Google Cloud Functions. "Hello World" functions are implemented in Python and Go. Pulumi program is implemented in TypeScript.

# Create and configure a new stack
$ pulumi stack init testing
$ pulumi config set gcp:project <your-gcp-project>
$ pulumi config set gcp:region <gcp-region>

# Install dependencies
$ npm install

# Preview and run the deployment
$ pulumi up
Previewing changes:
...
Performing changes:
...
info: 6 changes performed:
    + 6 resources created
Update duration: 1m14s

# Test it out
$ curl $(pulumi stack output pythonEndpoint)
"Hello World!"
$ curl $(pulumi stack output goEndpoint)
"Hello World!"

# Remove the app
$ pulumi destroy