Refresh Token after an Azure Role Assignment

Hi, when you create a role Assignment using Terraform (https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/role_assignment) , those Role Changes usually take some time, so resource creations that depend on this role (like creating a Loadbalancer which needs to pick an IP from a different resource group) will fail. One way to get around it is wait for 30 minutes or so, which is no option when applying a plan, another method would be to refresh the token (as stated here: Troubleshoot Azure RBAC | Microsoft Docs)

Is that (refrehing that token) somehow possible using the azurerm provider?