This message was deleted.
# general
s
This message was deleted.
b
I’ve looked for
stringArray
in the docs, and cannot find a definition anywhere.
l
Where are you seeing this?
pulumi config set-all
?
b
pulumi new --config
.
maybe this is the wrong place to do this. but no matter what we have tried to pass to pulumi new, it always asks for user input to set
gcp:project
.
l
Have a look at the docs for
set-all
, it has better examples for config. It should work the same. https://www.pulumi.com/docs/reference/cli/pulumi_config_set-all/
b
hrm. that looks to me like what we’re doing. Right now we are running
Copy code
pulumi new gcp-typescript --config "gcp:project=$project_name"
But it then asks for user input to specifiy
gcp:project
.
l
Hmm. Not sure. I'd double-check that _$project___name_ is being resolved correctly. And if it is, I'd resort to opening up the source code and see what it's doing under the hood 😞
b
Ok, I just found this. Maybe we can run
gcloud config set project …
before running
pulumi new
, or set the
$GOOGLE_PROJECT
.
In any case, thanks for the help!