github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/terraform/testdata/apply-destroy-cross-providers/main.tf (about)

     1  resource "aws_instance" "shared" {
     2  }
     3  
     4  module "child" {
     5      source = "./child"
     6      value = "${aws_instance.shared.id}"
     7  }