khuedoan-homelab/infra/terraform.tf

17 lines
284 B
Terraform
Raw Normal View History

2021-02-12 21:24:13 +07:00
terraform {
2021-05-01 22:51:55 +07:00
# TODO (feature) Generate endpoint automatically (terragrunt for variable)
2021-06-08 20:37:39 +07:00
backend "etcdv3" {
endpoints = [
"192.168.1.110:23799"
]
2021-06-09 00:48:22 +07:00
lock = true
2021-06-08 20:37:39 +07:00
}
2021-02-12 21:51:19 +07:00
required_providers {
2021-02-13 12:49:59 +07:00
rke = {
source = "rancher/rke"
2021-05-21 01:26:03 +07:00
version = "1.2.2"
}
2021-02-12 21:51:19 +07:00
}
}