mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-29 01:58:34 -04:00
terraform: fix azure password constraints
This commit is contained in:
parent
96d594b6e1
commit
741684843c
1 changed files with 5 additions and 1 deletions
|
@ -13,6 +13,10 @@ terraform {
|
|||
|
||||
resource "random_password" "password" {
|
||||
length = 16
|
||||
min_lower = 1
|
||||
min_upper = 1
|
||||
min_numeric = 1
|
||||
min_special = 1
|
||||
}
|
||||
|
||||
resource "azurerm_linux_virtual_machine_scale_set" "scale_set" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue