From b0839175b175a6ee7cd4f13b0ad61b1c7efb4f40 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 28 May 2020 16:19:02 -0700 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f06a07232..b6fef4494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,9 @@ NEW FEATURES: -* Terraform now supports a decentralized namespace for providers, allowing for automatic installation of community providers from third-party namespaces in the public registry and from private registries. (More details will be added about this prior to release.) -* `count` and `for_each` for modules [GH-24461] -* Terraform now supports [custom validation rules for module input variables](https://www.terraform.io/docs/configuration/variables.html#custom-validation-rules). This allows defining validation rules at the entry point to a module, so that errors in the calling configuration can be reported in the caller's context rather than inside the implementation details of the module. [GH-25054] +* **`count` and `for_each` for modules**: Similar to the arguments of the same name in `resource` and `data` blocks, these create multiple instances of a module from a single `module` block. [GH-24461] +* **Automatic installation of third-party providers**: Terraform now supports a decentralized namespace for providers, allowing for automatic installation of community providers from third-party namespaces in the public registry and from private registries. (More details will be added about this prior to release.) +* **Custom validation rules for input variables**: A new [`validation` block type](https://www.terraform.io/docs/configuration/variables.html#custom-validation-rules) inside `variable` blocks allows module authors to define validation rules at the public interface into a module, so that errors in the calling configuration can be reported in the caller's context rather than inside the implementation details of the module. [GH-25054] BREAKING CHANGES: