Howdy ya’ll, Question about doing things the prope...
# typescript
b
Howdy ya’ll, Question about doing things the proper pulumi way - What is the proper way to write a deployment library that can be used across the pulumi supported languages? (specifically want to write once if possible, and use in both C# and Typescript, preferably writing only in typescript) or do I need to write and maintain two deployment libraries?
Been trying to google it but getting different answers - is Dynamic provider what I’m looking for? or is that a full provider?
g
If you want it to work cross language, than you need to implement a proper provider and either implement or generate the client libraries to interact with it.
b
kk, ty