I found a small error in the docs example usage for [azuread_group_role_management_policy](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/group_role_management_policy): ```terraform resource "azuread_group_role_management_policy" "example" { group_id = azuread_group.example.id # should be azuread_group.example.object_id role_id = "member" ``` The issue is on line 14. Related error: ``` Error: expected "group_id" to be a valid UUID, got /groups/<UUID> ```
I found a small error in the docs example usage for azuread_group_role_management_policy:
The issue is on line 14.
Related error: