I've been looking into ways to add the ability to see specific changes for resources to be updated / created and it seems like terraform plan -json output doesn't provide the change representation of before/after.
https://developer.hashicorp.com/terraform/internals/json-format#change-representation
You have to resort to terraform plan -out=tfplan && terraform show -json tfplan > plan.json
Would you be willing to accept a PR to read this json format so support could be added for viewing change details?
I've been looking into ways to add the ability to see specific changes for resources to be updated / created and it seems like terraform plan -json output doesn't provide the change representation of before/after.
https://developer.hashicorp.com/terraform/internals/json-format#change-representation
You have to resort to terraform plan -out=tfplan && terraform show -json tfplan > plan.json
Would you be willing to accept a PR to read this json format so support could be added for viewing change details?