opentofu/terraform/test-fixtures/refresh-data-resource-basic/main.tf
Martin Atkins ed9b8f91cf core: test that data sources are read during refresh
Data sources with non-computed configurations should be read during the
refresh walk. This test ensures that this remains true.
2016-05-23 15:21:00 -05:00

6 lines
72 B
HCL

data "null_data_source" "testing" {
inputs = {
test = "yes"
}
}