automated install of fedora vm with cloud-init

This commit is contained in:
Petar Cubela
2025-09-17 23:39:41 +02:00
parent 37c441a107
commit 67c9df85f1
21 changed files with 1610 additions and 144 deletions

16
variables.tf Normal file
View File

@@ -0,0 +1,16 @@
variable "domain" {
type = string
}
variable "ssh_public_key" {
type = string
sensitive = true
}
variable "ssh_private_key" {
type = string
sensitive = true
}