terraform { required_providers { terraform = { source = "terraform.io/builtin/terraform" } } } resource "terraform_data" "first" { count = 200 input = count.index } resource "terraform_data" "second" { count = 200 input = terraform_data.first[count.index].input }
{}
Log