NTP/tf/providers.tf

30 lines
411 B
Terraform
Raw Normal View History

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
}
}