Hello! I have a task to migrate a terraform azuread module which creates an app reg to use the msgraph provider. I have hit a stumbling block when trying to create the app reg identifier uri as previously it was in a seperate resource block which references the client_id but with msgraph it seems that you have to contain the identifierURIs within the main msgraph_resource app reg creation block, has anyone found a workaround for this? TIA
Block to migrate; resource “azuread_application_identifier_uri” “api” {
count = var.create_azuread_application_identifier_uri ? 1 : 0
application_id = azuread_application_registration.this.id
identifier_uri = “api://${azuread_application_registration.this.client_id}”