terraform: fix azure password constraints

This commit is contained in:
Leonard Cohnen 2022-11-02 02:08:41 +01:00 committed by 3u13r
parent 96d594b6e1
commit 741684843c

View File

@ -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" {