The default Identifier/Reply URL is missing.
Issues on GitHub are intended to be related to bugs or feature requests with provider codebase, so we recommend using our other community resources instead of asking here 👍.
Changing the Identifier/Reply of the registration application causes the next error in the enterprise app.

Is there any way to make them the default Identifier/Reply URLs?

reresource
resource "azuread_application" "App"{
display_name = var.displayname
identifier_uris = var.identifier_urls
web {
redirect_uris = var.redirect_urls
}
}
Vars
displayname = "My-App"
redirect_urls = ["https://re-url.com"]
identifier_urls = ["https://iden-url.com"]
There are more code but I guess its irrelevant
Hi @isarns, thanks for raising this. If I understand correctly, you'd like the service principal (enterprise application) to reflect changes made to an application's identifier URI(s) and/or redirect URI(s)? If so, this is unfortunately not possible at present as there is no API available to configure this.