opentofu/terraform/test-fixtures/input-var-partially-computed/child/main.tf
2015-08-12 14:23:33 -05:00

6 lines
74 B
HCL

variable "in" {}
resource "aws_instance" "mod" {
value = "${var.in}"
}