mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
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.
13 lines
209 B
HCL
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"
|
|
}
|