stale-knife-36790
03/27/2020, 10:31 AMbroad-dog-22463
03/27/2020, 11:28 AMstale-knife-36790
03/27/2020, 12:05 PMbroad-dog-22463
03/27/2020, 12:09 PMstale-knife-36790
03/27/2020, 12:19 PMerror: project: required field is not set
With project specified:
The Pulumi runtime detected that 63 promises were still active
at the time that the process exited. There are a few ways that this can occur:
* Not using `await` or `.then` on a Promise returned from a Pulumi API
* Introducing a cyclic dependency between two Pulumi Resources
* A bug in the Pulumi Runtime
Leaving promises active is probably not what you want. If you are unsure about
why you are seeing this message, re-run your program with the `PULUMI_DEBUG_PROMISE_LEAKS`
environment variable. The Pulumi runtime will then print out additional
debug information about the leaked promises.
gcp:storage:Bucket (my-bucket):
error: googleapi: Error 400: Unknown project id: pulumi_gcloud_test, invalid
broad-dog-22463
03/27/2020, 12:49 PMstale-knife-36790
03/27/2020, 1:03 PMconfig:
gcp:project: pulumi-gcloud-test
And my Pulumi.yaml file:
name: gcloud
runtime: nodejs
description: A minimal Google Cloud JavaScript Pulumi program
I tried the command a second ago and I do still get the same error on pulumi up
.broad-dog-22463
03/27/2020, 1:18 PMstale-knife-36790
03/27/2020, 1:30 PMpulumi new gcp-javascript
makes.
"use strict";
const pulumi = require("@pulumi/pulumi");
const gcp = require("@pulumi/gcp");
// Create a GCP resource (Storage Bucket)
const bucket = new gcp.storage.Bucket("my-bucket");
// Export the DNS name of the bucket
exports.bucketName = bucket.url;
billowy-army-68599
stale-knife-36790
03/30/2020, 8:45 AMorange-tailor-85423
04/02/2020, 9:54 PM