Difference between revisions of "Terraform splat expression"

From wikieduonline
Jump to navigation Jump to search
(No difference)

Revision as of 13:06, 31 January 2023


https://www.hashicorp.com/blog/hashicorp-terraform-0-12-preview-for-and-for-each

resource "aws_s3_bucket" "myexample" {
  # ...

  dynamic "website" {
    for_each = var.mywebsitevar[*]
    content {
      index_document = website.value.index_document
      error_document = website.value.error_document
    }
  }
}


Related terms

See also

Advertising: