mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 06:47:01 +07:00
36 lines
537 B
HCL
36 lines
537 B
HCL
terraform {
|
|
backend "etcdv3" {
|
|
endpoints = ["localhost:2379"]
|
|
lock = true
|
|
}
|
|
|
|
required_providers {
|
|
lxd = {
|
|
source = "terraform-lxd/lxd"
|
|
version = "1.5.0"
|
|
}
|
|
|
|
rke = {
|
|
source = "rancher/rke"
|
|
version = "1.1.7"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "lxd" {
|
|
generate_client_certificates = true
|
|
accept_remote_certificate = true
|
|
|
|
lxd_remote {
|
|
name = "local"
|
|
scheme = "https"
|
|
address = "localhost"
|
|
password = "1"
|
|
default = true
|
|
}
|
|
}
|
|
|
|
provider "rke" {
|
|
debug = true
|
|
}
|