https://pulumi.com logo
Title
b

best-dog-72192

02/22/2023, 4:03 PM
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

green-school-95910

02/22/2023, 6:22 PM
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

best-dog-72192

02/22/2023, 6:24 PM
kk, ty