Open kaat-nnit opened 1 month ago
Thanks for creating this issue @kaat-nnit!
Workaround: Introducing 5 seconds delay between environment creation and data source read with time_sleep resource results in a successful apply phase. Is it possible to introduce this delay in the data source itself such that using the time_sleep resource is not necessary for this setup to work?
It seems like a great idea, thanks for sharing it 👍
schema registry cluster data source read fails when read is deferred to the apply phase.
Just out of my curiosity, could you share more details on how you managed to defer it to the apply phase?
After upgrading to Terraform provider version 2.*.0 where schema registry cluster resource is removed, schema registry cluster data source read fails when read is deferred to the apply phase.
Terraform Confluent provider: 2.0.0 and higher Terraform version: 1.9.7
Terraform setup:
¨ This works fine only in a setup where the environment already exists and we swapped the schema registry cluster resource for data source following the Confluent Provider 2.0.0: Upgrade Guide.
Issue is encountered when trying to deploy an environment and read the data source in the same plan/apply sequence. The same result is obtained both with an implicit dependency and when using the
depends_on
block.Plan output:
Expected behaviour: Data source is read once the environment is created, and the apply step completes successfully.
Actual behaviour: Apply step fails with error:
Error: error reading Schema Registry Clusters: there are no SR clusters in "env-***" environment
Workaround: Introducing 5 seconds delay between environment creation and data source read with
time_sleep
resource results in a successful apply phase.Is it possible to introduce this delay in the data source itself such that using the time_sleep resource is not necessary for this setup to work?