Skip to content

Commit

Permalink
remove deprectaed attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Aug 6, 2024
1 parent 3fced5c commit 15801c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,12 @@ resource "azuread_service_principal_password" "main" {
resource "azurerm_key_vault_secret" "azuread_application_client_id" {
key_vault_id = azurerm_key_vault.main.id
name = format("%s-azure-client-id", var.resource_prefix)
value = azuread_application.main.application_id
value = azuread_application.main.client_id
}
resource "azurerm_key_vault_secret" "azuread_application_client_secret" {
key_vault_id = azurerm_key_vault.main.id
name = format("%s-azure-client-secret", var.resource_prefix)
value = azuread_application.main.application_id
value = azuread_application.main.client_id
}


Expand Down

0 comments on commit 15801c2

Please sign in to comment.