mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 23:37:57 +07:00
19 lines
268 B
Terraform
19 lines
268 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
lxd = {
|
||
|
source = "terraform-lxd/lxd"
|
||
|
version = "1.5.0"
|
||
|
}
|
||
|
|
||
|
rke = {
|
||
|
source = "rancher/rke"
|
||
|
version = "1.1.7"
|
||
|
}
|
||
|
|
||
|
helm = {
|
||
|
source = "hashicorp/helm"
|
||
|
version = "2.1.1"
|
||
|
}
|
||
|
}
|
||
|
}
|