12 lines
180 B
Plaintext
12 lines
180 B
Plaintext
resouRce "test_resource" "a" " {
|
|
count = 1
|
|
depends_on = [
|
|
test_resource.a
|
|
]
|
|
}
|
|
|
|
resource "test_resource" "b" {
|
|
count = 1
|
|
foo = data.test_data.d[count.index].compute
|
|
}
|