Skip to content

Commit 8512935

Browse files
committed
Fixed app reg HostNameNotOnVerifiedDomain error
1 parent f29a9bf commit 8512935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform/argocd_sso.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resource "azuread_service_principal" "msgraph" {
1313
# https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/application
1414
resource "azuread_application" "argocd" {
1515
display_name = var.argocd_app_reg_name
16-
identifier_uris = ["https://${var.argocd_app_reg_name}"]
16+
identifier_uris = ["https://${var.argocd_fqdn}"]
1717
sign_in_audience = "AzureADMyOrg"
1818
group_membership_claims = ["All"]
1919
prevent_duplicate_names = true

0 commit comments

Comments
 (0)