Martin Atkins
Martin Atkins
### Terraform CLI and Provider Versions Terraform v1.3.0-beta1, and hashicorp/local v2.2.3 ### Use Cases or Problem Statement We originally established the `local_file` data source as a way to model reading...
https://github.com/hashicorp/terraform/pull/34571 and https://github.com/hashicorp/terraform/pull/34614 previously changed the `EvalContext` interface to support evaluation in both fully-expanded and partial-expanded modules, but the provider-contributed functions feature landed semi-concurrently with it and so inadvertently introduced...
Previously we would proactively announce refreshing every individual object tracked in the state, which can get pretty noisy for larger configurations whose states are tracking lots of objects. Now we'll...
(Originally discussed in [a Reddit post](https://www.reddit.com/r/Terraform/comments/17cel7k/having_trouble_running_an_import_with_windows/).) It seems that when Terraform asks a provider to import something and the provider reports "not found", Terraform is producing an error message which...
Our typical policy is that the first release in any new minor release series of Terraform is built using the latest stable version of Go available at the time it...
Due to an oversight in our handling of resource instance objects that are neither in configuration nor plan -- which is true for data resources that have since been removed...
Using the new possibility of provider-contributed functions, this introduces three new functions which live in the `terraform.io/builtin/terraform` provider, rather than being language builtins, due to their Terraform-domain-specific nature and the...
### Module version v1.4.2 is current at the time I'm writing this, although this issue is discussing an entirely new capability. ### Use-cases It's relatively common to write a module...
As discussed in golang/go#26794, multiple processes of the `go` command cannot be safely run concurrently in the case where it installs new modules, since the installations will race. Since `gox`...
> **NOTE:** This was originally a prototype of ephemeral values as a whole, but the initial work here has since been merged as a language experiment in https://github.com/hashicorp/terraform/pull/35273, https://github.com/hashicorp/terraform/pull/35346, and...