opentofu/terraform/test-fixtures/apply-provider-computed/main.tf

10 lines
148 B
HCL

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