github.com/hugorut/terraform@v1.1.3/src/terraform/testdata/apply-module-depends-on/modb/main.tf (about) 1 resource "test_instance" "b" { 2 num = 2 3 } 4 5 data "test_data_source" "b" { 6 foo = "b" 7 } 8 9 output "out" { 10 value = test_instance.b.id 11 }