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

10 lines
133 B
HCL

resource "vault_instance" "foo" {}
provider "aws" {
value = "${vault_instance.foo.id}"
}
module "child" {
source = "./child"
}