Hi all! I'm writing my custom pulumi dynamic provider in python. It looks good so far. However, I miss some good examples. I found
this and
this. They gave me enough to build something simple. However, I wonder what's the best practice to implement read() and diff() methods to handle the actual remote state.
Currently, I'm calling read() from diff() and replacing _news with the read outs. But it feels wrong to me.