feat: add opentofu basic setup

This commit is contained in:
Alexander Navarro 2025-01-16 11:36:36 -03:00
parent 467de17183
commit 65a98c6f57
5 changed files with 112 additions and 0 deletions

14
opentofu/vms/variables.tf Normal file
View file

@ -0,0 +1,14 @@
variable "proxmox_api_endpoint" {
type = string
description = "Proxmox cluster API endpoint https://proxmox-01.my-domain.net:8006"
}
variable "proxmox_api_token" {
type = string
description = "Proxmox API token bpg proxmox provider with ID and token"
}
variable "root_password" {
type = string
description = "Password used for the root user"
}