Slawek Zachcial
Slawek Zachcial
I'm having the same issue and have been experimenting with the following: I have the following resource: ``` resource "null_resource" "show_diff" { triggers = { a =
Building upon my previous comment, a workaround to show a diff of values could be the use of `null_resource`. ``` locals { values = templatefile("values.yaml", { a = "b", c...
I put together [an example](https://github.com/slawekzachcial/terraform-protect-module) that shows how to, for certain use cases, protect resources created by 3rd party modules. In a nutshell, assuming your configuration uses a 3rd party...