0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-04 04:22:59 +00:00
terraform-provider-proxmox/howtos/cloud-init/native/provider.tf
bpg-autobot[bot] 46eaf69e3f
chore(main): release 0.45.0 (#941)
Co-authored-by: bpg-autobot[bot] <155200059+bpg-autobot[bot]@users.noreply.github.com>
2024-01-21 22:25:26 -05:00

18 lines
310 B
HCL

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