Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #99 from ulm0/master
Browse files Browse the repository at this point in the history
unspecified provider if enable_network_policy is false
  • Loading branch information
robmorgan authored Sep 4, 2020
2 parents 1a9e478 + 3dd5ca1 commit cc12ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gke-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ resource "google_container_cluster" "cluster" {
enabled = var.enable_network_policy

# Tigera (Calico Felix) is the only provider
provider = "CALICO"
provider = var.enable_network_policy ? "CALICO" : "PROVIDER_UNSPECIFIED"
}

vertical_pod_autoscaling {
Expand Down

0 comments on commit cc12ff4

Please sign in to comment.