Arthur Busser
Arthur Busser
I've found a workaround to this problem, to help until we find an actual fix. Placing the HTML comments like this conflicts with the Markdown *italics*, **bold**, or `code` tags:...
This is a feature I would love to have. @karancode Have you made any progress on this issue? Perhaps we could work on it together 🙂
@JarnoRFB's hack triggers an upgrade at every apply, not only when the local chart changes. Here is an upgrade to the hack that does not suffer from that drawback: 1....
Thank you for your answer. Adding a `--profile` flag is not an option in my case. The CLI I am developing is not Scaleway-specific. But the SDK's default behavior of...
Thanks for taking this initiative! Currently users have the option of using vault-env and we need to decide how murmur positions itself compared to the alternatives. Do users want murmur...
Any update on this? We'd love to help :) Here's a minimal example: ```go // main.go package main type Foo interface { DoStuff() } type FooFactory interface { NewFoo() Foo...
Thanks for reporting this! I believe this is a consequence of a core assumption that `tfautomv` makes: if it finds all the correct moves then Terraform's plan will be empty....
As mentioned in my response to issue #84, I think there may be valid cases where a resource that Terraform plans to replace in fact needs to be moved. I'd...
Hey @gzur 👋 This currently isn't possible but can definitely be implemented. Currently, `tfautomv` runs a `plan -out tfplan` command and then parses the plan file. I don't see why...
Interesting! Thanks for providing your use case 😊 Indeed the `-sS` flags are a great time saver. I agree that computing the plan again and again when iterating on rules...