This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
IaC-Homelab/provider.tf
2024-06-02 22:49:26 -04:00

28 lines
No EOL
471 B
HCL

# Proxmox Provider
# ---
# Initial Provider Configuration for Proxmox
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = ">= 0.58.1"
}
}
}
provider "proxmox" {
endpoint = var.virtual_environment_endpoint
api_token = var.virtual_environment_api
insecure = true
}
variable "virtual_environment_endpoint" {
type = string
}
variable "virtual_environment_api" {
type = string
}