Add first module : Gitea app

This commit is contained in:
2026-01-11 16:43:06 +01:00
parent 53a1e15866
commit 14dc3fdefd
20 changed files with 890 additions and 0 deletions

19
variables.tf Normal file
View File

@@ -0,0 +1,19 @@
variable "proxmox_api_token" {
description = "Token to connect Proxmox API"
type = string
}
variable "ssh_public_key" {
description = "SSH client public key"
type = string
}
variable "proxmox_endpoint" {
description = "Proxmox endpoint"
type = string
}
variable "proxmox_host_ip" {
description = "Proxmox ip for backup nfs share"
type = string
}