Contents
Roadmap info from [roadmap website](https://roadmap.sh/terraform/resource lifecycle@76kp98rvph_8UOXZR-PBC)
The Resource Behavior page describes the general lifecycle for resources. Some details of that behavior can be customized using the special nested lifecycle
block within a resource block body
resource "azurerm_resource_group" "example" {
# ...
lifecycle {
create_before_destroy = true
}
}