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

10 lines
148 B
HCL

provider "aws" {
value = "${test_instance.foo.value}"
}
resource "aws_instance" "bar" {}
resource "test_instance" "foo" {
value = "yes"
}