Archlinux up

This commit is contained in:
2026-09-08 12:31:12 -04:00
parent c32aa4982c
commit b4c05a9b76
9 changed files with 66 additions and 35 deletions
+13
View File
@@ -0,0 +1,13 @@
resource "random_password" "this" {
for_each = toset([for key,value in var.vm_guests: key])
length = 16
lower = true
min_lower = 1
min_numeric = 1
min_special = 1
min_upper = 1
numeric = true
override_special = "!@#%&?-_+"
special = true
upper = true
}