iac/terraform/proxmox/provider.tf
Renovate Bot 22285723f6
All checks were successful
OpenTofu Automation / deploy (push) Successful in 15s
⬆️ Update Terraform proxmox to v0.69.0
2024-12-20 19:59:03 -05:00

31 lines
498 B
HCL

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.69.0"
}
}
}
provider "proxmox" {
endpoint = var.virtual_environment_endpoint
password = var.ssh_password
username = "root@pam"
insecure = true
ssh {
agent = true
username = "root"
password = var.ssh_password
node {
name = "prox"
address = var.prox_ip_address
}
node {
name = "pve2"
address = var.pve2_ip_address
}
}
}