opentofu/terraform/testdata/apply-provider-computed/main.tf
2020-10-08 12:26:12 -04:00

10 lines
140 B
HCL

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