khuedoan-homelab/infra/terraform.tf
Khue Doan 3516b2cb29 Move ArgoCD back to infra bootstrap
Avoid ArgoCD server issue when applying Argo apps to quickly
2021-06-09 01:03:40 +07:00

17 lines
284 B
HCL

terraform {
# TODO (feature) Generate endpoint automatically (terragrunt for variable)
backend "etcdv3" {
endpoints = [
"192.168.1.110:23799"
]
lock = true
}
required_providers {
rke = {
source = "rancher/rke"
version = "1.2.2"
}
}
}