Open JohannesRudolph opened 1 year ago
Applying this module vanilla fails because User.Read is not a known MS Graph permission
https://github.com/meshcloud/terraform-azure-meshplatform/blob/23e30c9c860303774edf7d4be07c57fe49e247f9/modules/meshcloud-sso/module.tf#L28
The correct one seems to be User.Read.All which also matches instructions at https://docs.meshcloud.io/docs/meshstack.identity-provider.html#azure-ad-aad
User.Read.All
It also seems that type=Scope is not correct, azure portal does not enable granting admin consent in this case. This can be fixed by changing this to type=Role
type=Scope
type=Role
Applying this module vanilla fails because User.Read is not a known MS Graph permission
https://github.com/meshcloud/terraform-azure-meshplatform/blob/23e30c9c860303774edf7d4be07c57fe49e247f9/modules/meshcloud-sso/module.tf#L28
The correct one seems to be
User.Read.All
which also matches instructions at https://docs.meshcloud.io/docs/meshstack.identity-provider.html#azure-ad-aad