Skip to content

Commit

Permalink
feat: enable GCS FUSE driver addon
Browse files Browse the repository at this point in the history
  • Loading branch information
annirudh committed Dec 17, 2024
1 parent acab18b commit 9b05dfa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/app_gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ resource "google_container_cluster" "default" {
enable_intranode_visibility = true
deletion_protection = var.deletion_protection

dynamic "addons_config" {
for_each = var.enable_gcs_fuse_csi_driver == true ? [1] : []
content {
gcs_fuse_csi_driver_config {
enabled = true
}
}
}

binary_authorization {
evaluation_mode = "PROJECT_SINGLETON_POLICY_ENFORCE"
Expand Down
5 changes: 5 additions & 0 deletions modules/app_gke/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ variable "enable_private_gke_nodes" {
description = "Enable private nodes for the GKE cluster."
}

variable "enable_gcs_fuse_csi_driver" {
type = bool
description = "Enable GCS Fuse CSI driver for the GKE cluster."
}

variable "deletion_protection" {
description = "If the GKE Cluster should have deletion protection enabled. The GKE Cluster can't be deleted when this value is set to `true`."
type = bool
Expand Down

0 comments on commit 9b05dfa

Please sign in to comment.