opentofu/terraform/testdata/apply-destroy-computed/child/main.tf
2019-06-30 10:16:15 +02:00

6 lines
82 B
HCL

variable "value" {}
resource "aws_instance" "bar" {
value = "${var.value}"
}