mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
20 lines
285 B
HCL
20 lines
285 B
HCL
terraform {
|
|
required_version = ">= 0.13"
|
|
|
|
backend "remote" {
|
|
hostname = "app.terraform.io"
|
|
organization = "khuedoan"
|
|
|
|
workspaces {
|
|
name = "homelab"
|
|
}
|
|
}
|
|
|
|
required_providers {
|
|
rke = {
|
|
source = "rancher/rke"
|
|
version = "1.1.3"
|
|
}
|
|
}
|
|
}
|