regenerate providers.tf: remove vault_root_token variable [ci skip]

This commit is contained in:
Viktor Barzin 2026-03-15 21:21:01 +00:00
parent 2c8f3a607e
commit 06a0d0599a
39 changed files with 315 additions and 142 deletions

View file

@ -0,0 +1,15 @@
# Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa
variable "kube_config_path" {
type = string
default = "~/.kube/config"
}
provider "kubernetes" {
config_path = var.kube_config_path
}
provider "helm" {
kubernetes = {
config_path = var.kube_config_path
}
}