mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2024-11-21 23:40:19 +00:00
16 lines
No EOL
396 B
HCL
16 lines
No EOL
396 B
HCL
terraform {
|
|
required_version = ">= 0.14"
|
|
required_providers {
|
|
proxmox = {
|
|
source = "registry.example.com/telmate/proxmox"
|
|
version = ">= 1.0.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "proxmox" {
|
|
pm_tls_insecure = true
|
|
pm_api_url = "https://proxmox.jimsgarage.co.uk/api2/json"
|
|
pm_api_token_secret = "112e04a7-4f15-45c5-b1e1-624e90a55f8b"
|
|
pm_api_token_id = "root@pam!terraform"
|
|
} |