Terraform destroys a resource before updating depending resources

Hi @sanderdescamps,

The default resource replacement ordering in Terraform is delete-then-create, which would remove the B1 instance before any updates could be made. In order to be able to update the dependent resource (A) before destroying it’s dependency, you would need to use the create_before_destroy lifecycle option.