Skip to content

Commit

Permalink
terraform: fix azure password constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
3u13r committed Nov 2, 2022
1 parent 96d594b commit 7416848
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ terraform {
}

resource "random_password" "password" {
length = 16
length = 16
min_lower = 1
min_upper = 1
min_numeric = 1
min_special = 1
}

resource "azurerm_linux_virtual_machine_scale_set" "scale_set" {
Expand Down

0 comments on commit 7416848

Please sign in to comment.