terraform-provider-azuread icon indicating copy to clipboard operation
terraform-provider-azuread copied to clipboard

The default Identifier/Reply URL is missing.

Open isarns opened this issue 3 years ago • 1 comments

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. image

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

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

isarns avatar Mar 20 '22 14:03 isarns

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.

manicminer avatar Mar 21 '22 17:03 manicminer