Arel Rabinowitz
Arel Rabinowitz
### OpenTofu Version ```shell OpenTofu v1.6.0-dev ``` ### OpenTofu Configuration Files Any configuration with remote backend ### Debug Output . ### Expected Behavior `tofu force-unlock lock_id` should work even if...
### OpenTofu Version ```shell 1.6.0-dev ``` ### Use Cases The `import` block could benefit greatly from supporting `for_each`. Currently, importing resources that are using `for_each` is not possible / hard...
Currently, if a resource is planned to be destroyed, but the resource has `lifecycle.prevent_destroy = true`, then tofu would show you the error without the plan part for the resource....
### OpenTofu Version ```shell OpenTofu v1.6.0-dev ``` ### OpenTofu Configuration Files ```hcl resource "random_integer" "int" { min = 1 max = 50 lifecycle { prevent_destroy = true } } ```...
When running provider acceptance tests with the OpenTofu binary, the Global Schema Cache is never used. This causes the acceptance tests to take longer than they should The reason for...
### OpenTofu Version ```shell 1.6.0-dev ``` ### OpenTofu Configuration Files Running acceptance tests for providers takes longer than in Terraform. It seems that the reason is that acceptance tests don't...
### OpenTofu Version ```shell 1.6.0-dev ``` ### Use Cases Similarly to the `import` and `moved` blocks, which help manage changing the state through IaC without making any changes in the...
A backport of the Global Schema Cache fix in provider acceptance tests - https://github.com/opentofu/opentofu/pull/1054 Related to https://github.com/opentofu/opentofu/issues/1044 ## Target Release 1.6.1
Add changelog entry for Global Schema Cache fix in provider acceptance tests - https://github.com/opentofu/opentofu/pull/1054 Related to https://github.com/opentofu/opentofu/issues/1044 ## Target Release 1.6.1
The status check and link shown in the bors batch changes if the status check is ran again on the same commit, but for a different branch. We have CI...