Avi Deitcher
Avi Deitcher
Yeah but even statefulsets don't solve it. They make the hostname consistent and if you map external persistent volumes (I prefer not to) consistently mounted, but the fundamental protocol and...
Actually, that is what led me to this. They _do_ have a "plugin" for Kafka, but it has some real challenges, notably: * It _must_ be deployed along with their...
I validated it with them again yesterday. They are working on some containerized solutions, but it is a ways away. How hard would it be to create a new `OutputWriter`?...
It gets more interesting. I tried to fix it by setting: ```terraform lifecycle { ignore_changes = ["override_special"] } ``` It actually _does_ ignore the changes, but _still_ changes the output....
Thanks for the explanation @apparentlymart. In the meantime I generated `random_integer` with `count = 16`, generated the output with `join(“ “,...)`, and then some lovely shell magic with `printf` to...
I realize that using `random_integer` that way is not really useful. An alternative might be to use `random_integer` 16 times, but that still gives a difficult to manage result, and...
I managed to do this. I don't love it, would be nice if it were a basic resource. ```terraform provider "random"{} resource "random_string" test { length = 16 override_special =...
Funny, I didn't find that before. Is it new for 0.12?
IMHO unusual complexity. Simplicity makes for easier adoption.
Now *that* I like. It keeps with the Unix philosophy of text streams, and makes it real easy to compose manually.