You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current password generation may fail if one upper, lower, or numeric character is not randomly chosen in:
resource "random_password" "password" {
length = 16
special = true
override_special = "_%@"
}
Current password generation may fail if one upper, lower, or numeric character is not randomly chosen in:
resource "random_password" "password" {
length = 16
special = true
override_special = "_%@"
}
Found here:
terratest/examples/azure/terraform-azure-mysqldb-example/main.tf
Line 35 in f4b4e17
terratest/examples/azure/terraform-azure-sqldb-example/main.tf
Line 33 in f4b4e17
Update to:
resource "random_password" "password" {
length = 16
override_special = "-_%@"
min_upper = "1"
min_lower = "1"
min_numeric = "1"
min_special = "1"
}
The text was updated successfully, but these errors were encountered: