kubeform.dev/terraform-backend-sdk@v0.0.0-20220310143633-45f07fe731c5/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  }