0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 02:52:58 +00:00
terraform-provider-proxmox/examples/guides/cloud-init/custom/provider.tf
2024-03-15 07:32:41 -04:00

18 lines
319 B
HCL

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