Rename a resource in state:
terraform state mv azurerm_resource_group.old azurerm_resource_group.newMove a resource into a module:
terraform state mv azurerm_storage_account.sa module.storage.azurerm_storage_account.saList all resources in state:
terraform state listShow details of a specific resource:
terraform state show azurerm_resource_group.mainTip: Always run terraform plan after moving state to verify no changes are detected.