v1.9.0We're proud to announce that OpenTofu 1.9.0 is now officially out!
🎉This release includes a lot of major and minor new features, as well as a ton of community contributions!
The highlights are:
for_each in provider configuration blocks: An alternate (aka "aliased") provider configuration can now have multiple dynamically-chosen instances using the for_each argument:
provider "aws" {
alias = "by_region"
for_each = var.aws_regions
region = each.key
}
Each instance of a resource can...