Skip to content

Commit

Permalink
XDR-325: Limit special characters in service principal password (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Feb 9, 2021
1 parent 0b6e5e8 commit d359b8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/azuread-service-principal/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ terraform {
}

resource "random_password" "service_principal_password" {
length = 32
special = true
length = 32
special = true
override_special = "._"
}

resource "azuread_service_principal" "service_principal" {
Expand Down

0 comments on commit d359b8f

Please sign in to comment.