NTP/tf/providers.tf
Frank Villaro-Dixon 86a215c074 TF: be modularized
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-06-18 20:21:22 +02:00

30 lines
411 B
HCL

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.58.1"
}
}
}
provider "proxmox" {
alias = "cessy"
insecure = true
endpoint = "https://proxmox-cessy.lan.k3s.fr:8006/"
ssh {
agent = true
}
}
provider "proxmox" {
alias = "cranves"
insecure = true
endpoint = "https://proxmox-cranves.lan.k3s.fr:8006/"
ssh {
agent = true
}
}