We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6a0db6 + 302c6de commit ce9be35Copy full SHA for ce9be35
azurerm/_modules/aks/service_principal.tf
@@ -10,17 +10,9 @@ resource "azuread_service_principal" "current" {
10
application_id = azuread_application.current[0].application_id
11
}
12
13
-resource "random_string" "password" {
14
- count = var.disable_managed_identities == true ? 1 : 0
15
-
16
- length = 64
17
- special = true
18
-}
19
20
resource "azuread_service_principal_password" "current" {
21
count = var.disable_managed_identities == true ? 1 : 0
22
23
service_principal_id = azuread_service_principal.current[0].id
24
- value = random_string.password[0].result
25
end_date_relative = var.service_principal_end_date_relative
26
0 commit comments