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

32 lines
No EOL
517 B
HCL

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
}
variable "arrbuntu_ip_address" {
type = string
}
variable "arrbuntu_gateway" {
type = string
}