regenerate providers.tf: remove vault_root_token variable [ci skip]
This commit is contained in:
parent
9ed19e1b42
commit
19e0aef67b
39 changed files with 315 additions and 142 deletions
6
stacks/terminal/backend.tf
Normal file
6
stacks/terminal/backend.tf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa
|
||||
terraform {
|
||||
backend "local" {
|
||||
path = "/Users/viktorbarzin/code/infra/state/stacks/terminal/terraform.tfstate"
|
||||
}
|
||||
}
|
||||
15
stacks/terminal/providers.tf
Normal file
15
stacks/terminal/providers.tf
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue