opentofu/terraform/testdata/apply-provider-computed/main.tf

10 lines
140 B
Terraform
Raw Normal View History

provider "aws" {
2020-10-08 11:26:12 -05:00
value = test_instance.foo.id
}
resource "aws_instance" "bar" {}
resource "test_instance" "foo" {
value = "yes"
}