mirror of
https://gitlab.durp.info/durfy/homelab/iac.git
synced 2026-05-07 16:00:30 -05:00
15 lines
287 B
Terraform
15 lines
287 B
Terraform
|
|
variable "pm_api_url" {
|
||
|
|
description = "API URL to Proxmox provider"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "pm_password" {
|
||
|
|
description = "Passowrd to Proxmox provider"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "pm_user" {
|
||
|
|
description = "Username to Proxmox provider"
|
||
|
|
type = string
|
||
|
|
}
|