We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
azuread_service_principal_delegated_permission_grant
data "azuread_service_principal" "msgraph" { client_id = data.azuread_application_published_app_ids.well_known.result["MicrosoftGraph"] } resource "azuread_application_registration" "example" { display_name = "example" } resource "azuread_service_principal" "example" { client_id = azuread_application_registration.example.client_id } resource "azuread_service_principal_delegated_permission_grant" "delegated" { service_principal_object_id = azuread_service_principal.example.object_id resource_service_principal_object_id = data.azuread_service_principal.msgraph.object_id claim_values = [ "AccessReview.Read.All", "email" ] }
Claims get updated.
unexpected status 400 (400 Bad Request) with error: Request_BadRequest: Property cannot be updated: clientId
It works without any problem in version 2.0 of the provider.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Community Note
Terraform (and AzureAD Provider) Version 3.0.1
Affected Resource(s)
azuread_service_principal_delegated_permission_grant
Terraform Configuration Files
Debug Output
Panic Output
Expected Behavior
Claims get updated.
Actual Behavior
unexpected status 400 (400 Bad Request) with error: Request_BadRequest: Property cannot be updated: clientId
Steps to Reproduce
Important Factoids
It works without any problem in version 2.0 of the provider.
References
The text was updated successfully, but these errors were encountered: