Joe Duffy
Joe Duffy
I wonder if it could be based on the underlying provider. For instance, the S3 one could use the bucket name as the org by default, and if you wanted...
@AaronFriel the issue is that there is no correct use of the `RemoteCommand` resource that doesn't entail encrypting the private key used for connections. See https://github.com/pulumi/pulumi-command/issues/111. Given that both @AaronFriel...
We should check out Rails-style migrations as a possible way of doing some of this, especially SQL migrations: http://guides.rubyonrails.org/v3.2.8/migrations.html
This came up again during a recent discussion. I think there is a beautiful world in which we introduce the concept of a "migration" as a first class concept. A...
@pgavlin This is an area to think about, since it has come up a few times now (both in community discussions and in customer conversations). It's loosely related to dynamic...
I’d be surprised by that personally. I love the idea of unifying and IMHO, Luke’s list is in the correct order.
@lukehoban What do we recommend for folks who find themselves in this situation? I believe @praveenperera got entirely stuck here because he couldn't clear out `pending_operations` from his stack. For...
One reason this may not work is that it prevents module side effects from taking place, like: ```typescript pulumi.runtime.registerResourceModule("azure-native", "storage", _module); ``` This didn't impact my ability to run the...
I should note, if you do the workaround (import modules specifically), it too skips a whole bunch of the initialization. So, if this is a problem with the proposal above,...
> Based on having solved it for Python, I hope the initialization problem is not a real blocker here. In Python we edited codegen to move init work to the...