Tom Bamford
Tom Bamford
@stevehipwell Sorry, I misread the context of your message, to which I was replying. I understand that some configurations may have broken as a result of incorrect usage of the...
@stevehipwell Could you elaborate further on the breakage you have experienced? The `application_id` attribute for the `azuread_application` resource has not changed. Yes it is now deprecated, but it is still...
@nfrappart As per the docs, you'll need to consume the `id` attribute of your `azuread_application` resource, e.g. ```hcl resource "azuread_application_password" "owner" { application_id = azuread_application.owner.id } ``` To clarify my...
> Can I suggest however that the documentation for [azuread_application](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/application) gets updated to include the `id` attribute reference? It's present in the [azuread_application_registration](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/application_registration) page (where I found it) but not...
@stockmaj Thanks for reporting. The `azuread_application` _data source_ doesn't yet have an updated ID format, we'll fix this in the next release.
@arun-bejjanki-kr Can you confirm if my [earlier comment](https://github.com/hashicorp/terraform-provider-azuread/issues/1227#issuecomment-1780062661) helps to resolve your issue? Thanks!
@jayctran Due to historic ambiguous naming in Azure, the term "application ID" means different things depending on where you look. We are standardising on the term "client ID" for an...
Hi @cveld, thanks for requesting this. Just to clarify, are you looking to set the display name for the service principal? This is unfortunately tied to the application registration and...
@cveld Thanks for clarifying. Unfortunately that's using an internal Azure API that we cannot use. As mentioned, the MS Graph API doesn't support setting the displayName independently for a service...
@jgschwendswica You can use Az Powershell, or call Microsoft Graph directly (e.g. https://graph.microsoft.com/v1.0/policies/claimsMappingPolicies). Try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer) :)