https://pulumi.com logo
s

shy-army-45455

04/16/2019, 3:56 PM
Has there ever been any talk on adding in the ability to import database data through Pulumi? Say by throwing a local SQL file at a database table that's a part of a Pulumi stack?
w

white-balloon-205

04/16/2019, 4:01 PM
Definitely - some discussions on this in https://github.com/pulumi/pulumi/issues/127 and https://github.com/pulumi/pulumi/issues/1691. You can also do some of this already today with a combination of (a) code that runs in apply on dependencies (b) runtime.isDryRun to ensure these only run during updates not previews (c) possibly dynamic providers if there is a need to precisely control the lifecycle. There’s lots more we want to do here!
👍 1
s

shy-army-45455

04/16/2019, 10:22 PM
Thanks, I'll see what I can do with what you suggested.