mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
Picking sides No real functional change except the cute tofu icon in my IDE instead of the purple T
19 lines
338 B
HCL
19 lines
338 B
HCL
terraform {
|
|
required_providers {
|
|
proxmox = {
|
|
source = "bpg/proxmox"
|
|
version = "0.76.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "proxmox" {
|
|
endpoint = var.proxmox_cluster.endpoint
|
|
insecure = var.proxmox_cluster.insecure
|
|
|
|
api_token = var.proxmox_api_token
|
|
ssh {
|
|
agent = true
|
|
username = var.proxmox_cluster.username
|
|
}
|
|
} |