Hi everyone, I'm having trouble getting an object...
# google-cloud
l
Hi everyone, I'm having trouble getting an object from GCS. My code looks like:
Copy code
const bucketId = "<gs://my-bucket/my-file.json>";
const testData = gcp.storage.BucketObject.get("object-test", bucketId);
console.log(testData);
Running
pulumi up
gives me
Preview failed: resource '<gs://my-bucket/my-file.json>' does not exist
SO it seems that Pulumi does not like the value I'm giving it as the Id. Using
gsutil
I can however do:
Copy code
gsutil cat <gs://my-bucket/my-file.json>
Which works fine. The bucket object was created outside of Pulumi and is private. Any ideas what value I should be using as the ID?
m
You probably figured this out already, but my guess is the bucketId should be just the name of the bucket.