terraform-google-kubernetes-engine icon indicating copy to clipboard operation
terraform-google-kubernetes-engine copied to clipboard

Add istio config to addons

Open framled opened this issue 5 years ago • 0 comments

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

framled avatar Apr 18 '19 16:04 framled