change also variable name in text

This commit is contained in:
StefanSchoof 2022-05-18 07:59:47 +02:00 committed by GitHub
parent 7cb1cf7b63
commit 650ada19b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ resource "aws_s3_bucket" "example" {
The above example uses a [`dynamic` block](/language/expressions/dynamic-blocks), which
generates zero or more nested blocks based on a collection value. The input
variable `var.website` is defined as a single object that might be null,
variable `var.website_setting` is defined as a single object that might be null,
so the `dynamic` block's `for_each` expression uses `[*]` to ensure that
there will be one block if the module caller sets the website argument, or
zero blocks if the caller leaves it set to null.