init of new project root

This commit is contained in:
Petar Cubela
2025-09-20 19:56:03 +02:00
parent 8e6a8991c1
commit 8f7b06f951
8 changed files with 425 additions and 0 deletions

28
variables.tf Normal file
View File

@@ -0,0 +1,28 @@
## FreeIPA
variable "domain" {
type = string
}
variable "realm" {
type = string
}
## PVE
variable "student_vm_template" {
type = string
}
## General
variable "petar_ssh_public_key" {
type = string
sensitive = true
}
variable "petar_ssh_private_key" {
type = string
sensitive = true
}