Martin Atkins
Martin Atkins
If we do want to change something to make this concurrency-safe then I think a key requirement for us to navigate is ensuring we don't break anyone who currently has...
As far as I'm aware, none of the installation methods are truly atomic today: even if we first extract into a temporary directory and then copy into the final location,...
Hi @mBouamama, We have previously experimented with implementing completion for arguments to Terraform's subcommands, and the `terraform workspace` subcommands show an example of that completing workspace names, but ultimately we...
Hi @tspearconquest, Terraform is using the "RE2" regular expression engine, which does indeed omit several of the more "expensive" features from other regex engines like Perl's. I don't expect we...
Hi @tspearconquest, The functions built in to the Terraform language are typically ones that have broad applicability, and the existing `cidr...` family of functions is already arguably a bit too...
Thanks for reporting this, @danischm. I expect that the root cause here is that the local state implementation doesn't implement the state storage API as documented: The state storage API...
Hi @landorg! Thanks for reporting this. It's been a while since I looked at this part of the Terraform so I had to look at the code to refresh my...
Hi @xorinzor! Thanks for reporting this. "kinetic" isn't one of [the currently-supported distributions](https://developer.hashicorp.com/terraform/cli/install/apt#supported-debian-and-ubuntu-releases) and so I believe this behavior is as expected. Until the apt repository supports this distribution you...
Backend Config file cannot be read following an (unnecessary?) absolute/relative path transformation
Thanks for reporting this, @wigbam. In several different cases Terraform attempts to transform a provided path into a relative one (relative to the root module) so that it's safe to...
Hi @moelasmar! Unfortunately Terraform does not itself track the information you are hoping for here: for dependency resolution purposes, dependencies are between whole `resource` blocks rather than individual instances. Terraform...