Skip to content

Commit

Permalink
Remove special chars from admin login
Browse files Browse the repository at this point in the history
  • Loading branch information
russdaygh committed Apr 23, 2024
1 parent ab1776e commit ab558ad
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ resource "azurerm_resource_group" "rg" {
}

resource "random_string" "admin_login" {
length = 16
special = true
override_special = "/@£$"
length = 20
special = false
}

resource "random_password" "admin_password" {
length = 30
length = 30
special = false
}

Expand Down

0 comments on commit ab558ad

Please sign in to comment.