terraform-google-kubernetes-engine
terraform-google-kubernetes-engine copied to clipboard
Add istio config to addons
What I trying to accomplish
I need to configure istio addon
module "cluster" {
disable_istio_config = "false"
}
Fix
addons_config {
istio_config {
disable = "${lookup(var.master, "disable_istio_config", true)}"
}
}
I trying to make a PR for this