Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ module "gke" {
subnetwork = local.vpc_subnetwork
azs = local.azs
disk_size_gb = var.default_node_disk_size
disk_type = var.default_node_disk_type
vpc_master_cidr_block = var.vpc_master_cidr_block
machine_type = var.machine_type
enable_ch_node_pool = var.enable_ch_node_pool
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,12 @@ variable "default_node_disk_size" {
description = "Root disk size for a cluster node"
}

variable "default_node_disk_type" {
type = string
default = "pd-standard"
description = "The disk type for the GKE cluster nodes"
}

variable "vpc_master_cidr_block" {
type = string
default = "192.168.0.0/28"
Expand Down
Loading