How to set execution preference for CRUD operation in Provider?

Hi,

I am new to Terraform Provider development.

We declare all the methods for CRUD operation inside resource_.go file. But how does it determine which method to run first?

How do we set priority of execution of CRUD methods?

Thanks,
Avinash

You do not set the order of execution. Terraform dynamically determines it through the dependencies between resources in the user’s configuration.