Skip to content

Commit

Permalink
Fixes deprecated warning
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrushuk committed Dec 24, 2023
1 parent 60f163b commit fadadf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/argocd_sso.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ data "azurerm_client_config" "current" {}
resource "null_resource" "argocd_cm" {
triggers = {
yaml_contents = filemd5(var.argocd_cm_yaml_path)
sp_app_id = azuread_service_principal.argocd.application_id
sp_app_id = azuread_service_principal.argocd.client_id
}

provisioner "local-exec" {
Expand All @@ -101,7 +101,7 @@ resource "null_resource" "argocd_cm" {
var.argocd_cm_yaml_path,
{
"tenantId" = data.azurerm_client_config.current.tenant_id
"appClientId" = azuread_service_principal.argocd.application_id
"appClientId" = azuread_service_principal.argocd.client_id
}
)
}
Expand Down

0 comments on commit fadadf0

Please sign in to comment.