opentofu/terraform/test-fixtures/issue-5254/step-0/main.tf
Martin Atkins b99b31ebea core: Correct schema for TestContext2Apply_issue5254
This test is now failing due to the fact that WritePlan is currently
disabled pending a rewrite. This will be addressed in a subsequent commit.
2018-10-16 18:49:20 -07:00

13 lines
209 B
HCL

variable "c" {
default = 1
}
resource "template_file" "parent" {
count = var.c
template = "Hi"
}
resource "template_file" "child" {
template = "${join(",", template_file.parent.*.template)} ok"
}