mirror of
https://github.com/optim-enterprises-bv/turnk8s.git
synced 2025-11-02 11:18:33 +00:00
26 lines
462 B
HCL
26 lines
462 B
HCL
terraform {
|
|
required_version = ">= 1.7"
|
|
backend "remote" {
|
|
hostname = "app.terraform.io"
|
|
organization = "infraheads"
|
|
|
|
workspaces {
|
|
prefix = "turnk8s-"
|
|
}
|
|
}
|
|
|
|
required_providers {
|
|
proxmox = {
|
|
source = "telmate/proxmox"
|
|
version = "3.0.1-rc1"
|
|
}
|
|
talos = {
|
|
source = "siderolabs/talos"
|
|
version = "0.5.0"
|
|
}
|
|
github = {
|
|
source = "integrations/github"
|
|
version = "6.2.1"
|
|
}
|
|
}
|
|
} |