mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 15:28:11 +07:00
3516b2cb29
Avoid ArgoCD server issue when applying Argo apps to quickly
17 lines
284 B
HCL
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"
|
|
}
|
|
}
|
|
}
|