Joe Duffy

Results 80 comments of Joe Duffy

Unless I'm mistaken, this is likely more complicated than "just" fixing the `crd2pulumi` tool (I tried). First, we would need to translate both type and property names so that the...

This seems to only happen if you name your security group `sg`, and is an unfortunate byproduct of how we auto-append a random suffix to help to avoid naming collisions....

Another thing worth considering: `recreateOnUpdate: true`. For idempotent commands, it would be really nice to trigger re-running the `create` when an update occurs. I've found myself wanting this many times...

I think we already have a workaround for this with `tcp` vs `http`. We can of course revisit doing better, but I think we have enough on our plates for...

@mmdriley points out this interesting discussion over in the Terraform repo: https://github.com/hashicorp/terraform/issues/10740 Definitely lots of good conversation in there. Interestingly, I've pondered the schema-as-hashed-resources ideas before too. Sadly, I do...

I completely agree that (1) is a more promising approach. The hardest part here is the DDL aspects, which I think we need to have an opinion on since it's...

Is there anything actionable we plan to do here before ship?

Let's see how far we can get on a minimal version of this with just `cloud.Service` and `cloud.Function`, and use that to drive how much of the OpenFaaS provider we...

There unfortunately hasn't been much progress. @lukehoban can correct me, but I don't expect this to happen soon ish, primarily because we have been focused on hatching AWS, Kubernetes, etc...

One of the distributed data structures we've discussed is simply a distributed variable. The idea is that you could simply say let var = new pulumi.collections.Variable(0); something.subscribe(() => { var.set(var.get()+1);...