GCP Instance
A GCP Go Pulumi to create an instance
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set gcp-go-instancecd pulumi-examples/gcp-go-instanceCreate a GCP instance using Pulumi + Go.
Running the App#
-
Create a new stack:
$ pulumi stack init gcp-instance -
Configure the project:
$ pulumi config set gcp:project YOURGOOGLECLOUDPROJECT$ pulumi config set gcp:zone us-central1-a -
Run
pulumi upto preview and deploy changes:$ pulumi upPreviewing update (gcp-instance):...Updating (gcp-instance):Type Name Status+ pulumi:pulumi:Stack gcp-instance created+ └─ gcp:compute:Instance instance createdOutputs:instanceName: "instance-6beb431"Resources:+ 2 createdDuration: 23s -
Cleanup
$ pulumi destroy$ pulumi stack rm