14 lines
172 B
HCL
14 lines
172 B
HCL
terraform {
|
|
backend "local" {
|
|
path = "30-policy-demo.tfstate"
|
|
}
|
|
}
|
|
|
|
variable "kubectx" {
|
|
type = string
|
|
}
|
|
|
|
provider "kubernetes" {
|
|
config_context = var.kubectx
|
|
}
|