github.com/opentofu/opentofu@v1.7.1/internal/tofu/testdata/apply-destroy-provisider-refs/mod/main.tf (about)

     1  data "null_data_source" "foo" {
     2         count = 1
     3  }
     4  
     5  
     6  output "output" {
     7    value = data.null_data_source.foo[0].output
     8  }
     9