github.com/tompao/terraform@v0.6.10-0.20180215233341-e41b29d0961b/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 }