opentofu/terraform/test-fixtures/apply-destroy-computed/child/main.tf
2015-07-20 08:57:34 -07:00

6 lines
82 B
HCL

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