0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00
terraform-provider-proxmox/examples/provider/provider.tf
Ming Xie 32bdc21750
fix(provider): typo in provider example (#785)
Signed-off-by: Ming Xie <git@mxie.dev>
Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2023-12-11 04:44:25 +00:00

18 lines
301 B
HCL

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
}
}
}
provider "proxmox" {
endpoint = var.virtual_environment_endpoint
username = var.virtual_environment_username
password = var.virtual_environment_password
insecure = true
ssh {
agent = true
}
}