github.com/nevins-b/terraform@v0.3.8-0.20170215184714-bbae22007d5a/terraform/test-fixtures/apply-data-depends-on/main.tf (about) 1 resource "null_resource" "write" { 2 foo = "attribute" 3 } 4 5 data "null_data_source" "read" { 6 foo = "" 7 depends_on = ["null_resource.write"] 8 }