While writing `pulumi new` , it gives predefined t...
# general
n
While writing
pulumi new
, it gives predefined templates. I have written pulumi script to create vm, storage and network in same script for aws, azure and DO. And I want to use them as a cli installation. How can I create cli like
pulumi new
only for downloading that script and I will use
pulumi up
later. Which tools should I use to create that cli feature or any predefined template I can use ?
m
You can use any project in a git repo as a template for Pulumi new, see this article - https://www.pulumi.com/blog/how-to-create-and-share-a-pulumi-template/
n
Hey, Thanks a lot for sharing it. I will create my template now.