0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 10:33:46 +00:00
terraform-provider-proxmox/examples/guides/cloud-image/debian-from-storage/provider.tf
bpg-autobot[bot] fea9c57719
chore(main): release 0.66.2 (#1579)
Co-authored-by: bpg-autobot[bot] <155200059+bpg-autobot[bot]@users.noreply.github.com>
2024-10-12 14:38:16 -04:00

18 lines
319 B
HCL

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.66.2" # x-release-please-version
}
}
}
provider "proxmox" {
endpoint = var.virtual_environment_endpoint
api_token = var.virtual_environment_token
ssh {
agent = true
username = "terraform"
}
}