blob: c7332ad291e86595267ffa335b4917c4d639191e [file] [log] [blame]
resource "test_resource" "a" {
}
data "test_data" "d" {
count = 1
depends_on = [
test_resource.a
]
}
resource "test_resource" "b" {
count = 1
foo = data.test_data.d[count.index].compute
}