Merge pull request 'fenix-admin' (#70) from fenix-admin into main

Reviewed-on: fenix-gitea-admin/iac-teste#70
This commit is contained in:
2025-08-21 21:30:10 +00:00
2 changed files with 11 additions and 1 deletions

View File

@ -3,7 +3,11 @@ provider "proxmox" {
api_token = var.proxmox_apikey
ssh {
agent = true
username = "terraform"
username = proxmox_username_ssh
socks5_server = proxmox_server_ssh
socks5_username = proxmox_username_ssh # optional
socks5_password = proxmox_password_ssh # optional
}
}

View File

@ -4,6 +4,12 @@ variable "proxmox_server" {
sensitive = false
}
variable "proxmox_server_ssh" {
description = "Proxmox server ssh url"
type = string
sensitive = true
}
variable "proxmox_apikey" {
description = "Proxmox server api key"
type = string