Martin Atkins
Martin Atkins
This seems like a reasonable idea to me! In the core Terraform layer we have an interface `ResourceProviderCloser` which a provider can implement so that `Close()` will be called on...
Oh my... this is an old issue! Sorry for the long silence here. Before I respond, I just want to be explicit that my comment above was from long before...
Hi @ctrlok! Thanks for sharing this use-case and the writeup of what you considered so far. I'm not one of the folks who works directly in this repository so I'm...
Hello! I'm one of the folks who works on Terraform Core. I ended up here after following a link from a community question about normalizing the IP addresses in this...
With the addition of [the refactoring features in v1.1](https://www.terraform.io/language/modules/develop/refactoring), I think it's worth considering whether renaming a resource should automatically generated a `moved` block adjacent to it, which would therefore...
Could there be a potential compromise here in initially focusing the non-JavaScript design on the use-cases that motivated non-modal UI (#1545)? While I do understand that several participants in this...
Hi @deitch, Terraform strings are of unicode characters rather than bytes, so what you are trying to do here is not possible with Terraform strings. It would require some specialized...
Hi @errygg! Thanks for reporting this. I think the provider SDK vendored into the `random` provider may be too old for beta1; this bug looks like something that has been...
Hi @PleaseStopAsking! Each of the resource instances created by `count` is independent of the others, so they are each creating their own random number generator here. Unfortunately the pseudorandom number...
Thanks for following up, @PleaseStopAsking! I've labelled this issue as "documentation" since I think we need to document this behavior more explicitly. We currently imply this by talking about how...