Files
learn-devops/opentofu/kubeadm/provider.tf
github-actions[bot] 52a3d0eb3b Add L2 Load Balancer (#16)
Co-authored-by: Fedor Batonogov <f.batonogov@yandex.ru>
2024-07-27 11:35:15 +03:00

18 lines
289 B
HCL

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = ">= 0.61.1"
}
}
}
provider "proxmox" {
endpoint = var.virtual_environment_endpoint
api_token = var.virtual_environment_api_token
insecure = true
ssh {
agent = false
}
}