Hi, I recently updated to the latest pulumi versio...
# general
h
Hi, I recently updated to the latest pulumi version (3.6.1, using python) and now the diff view is not showing the whole truth:
Copy code
~ pulumi-python:dynamic:Resource: (update)
            config      : {
                data: "test"
                name: "admin"
            }
It's showing that the resource needs updates, but it is not showing what is going to be updated. For comparison, when running the same code with 3.5.1:
Copy code
~ pulumi-python:dynamic:Resource: (update)
          ~ config      : {
              ~ data: "test" => "newstuff"
                name: "admin"
            }
Is this some kind of bug, or am I not aware of any changes and this is completely normal?