What is the primary risk of relying solely on 'create_before_destroy' without considering dependency chains?
Naming conflicts are the most common failure mode.
Why this answer
If multiple resources have circular dependencies or if the provider lacks support for concurrent resource existence, the create_before_destroy might fail.