Really, pulumi? :face_palm: ```&gt; pulumi new <ht...
# general
f
Really, pulumi? 🤦
Copy code
> pulumi new <https://github.com/[...]/webapp-template.git> --force
error: failed to retrieve git folder: failed to clone ref 'refs/heads/main': authentication required
s
Is it a private repo?
f
yes
I want it to use the same auth magic that
git
uses
workaround is just to tell people to run
Copy code
git clone <https://github.com/[...]/webapp-template.git> ../webapp-template
pulumi new ../webapp-template --force
which, again, 🤦 but it works
s
I think you can use an SSH key via
pulumi new git@github.com:<user>/<private-repo>
f
Funny thing, we used to use ssh keys but we switched over to https recently. I'm not sure we support ssh with our new github enterprise setup
In any case, I don't want to make other users set up an ssh key just to use
pulumi new
e
This looks like a reasonable request to raise an issue about.