Hey All, Random question does any one know if the...
# golang
r
Hey All, Random question does any one know if there is a way to call/use the Pulumi CLI directly within Go? For example if I wanted to run
pulumi init
or say
pulumi up
from within a Go program is there a way to do this? Without running say
cmd.exec().output()
. Thanks.
q
This should be what you are looking for: https://www.pulumi.com/docs/guides/automation-api/
👍 1
r
Thanks So much for this I will dive into this and see if it can solve the problem I am looking at. But I expect it can.