https://pulumi.com logo
Title
h

hallowed-horse-57635

10/07/2021, 1:51 AM
Question - is there a way to capture the code that pulumi executes ? (hopefully this makes sense and will try to explain - example., we have a js program with variables that we will pass using a custom program/script through a json file that has the names of the variables Now when we call pulumi up, Is there a way to capture the code pulumi is using to deploy ? Alternately, is it possible to recreate the code using the state ?
l

little-cartoon-10569

10/07/2021, 2:26 AM
No, not really. You could turn debugging way up and see the results of the code running. You could instrument the plugin I suppose. Or if you're interested in the SDK calls, you could intercept the calls using wireshark or the like.
But why? Generally, if you care about the exact calls, then the using a helper layer like Terraform or Pulumi is probably the wrong direction for you.
h

hallowed-horse-57635

10/07/2021, 11:45 AM
not necessarily interested in the calls made BUT as we are developing a tool that uses Pulumi to deploy infra, we are exploring leaving behind the code (not our tool) that generated the infra...
thanks to @brave-planet-10645. he answered our questions on this topic.