Skip to content

Commit

Permalink
Merge pull request #26 from BrownUniversity/25-remove-master_ipv4_cid…
Browse files Browse the repository at this point in the history
…r_block-speciifcation

Remove master_ipv4_cidr_block setting
  • Loading branch information
jashlu authored Jan 9, 2025
2 parents f544db1 + 32040cc commit 14c664e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ No providers.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_gke"></a> [gke](#module\_gke) | terraform-google-modules/kubernetes-engine/google//modules/beta-private-cluster | 35.0.1 |
| <a name="module_gke"></a> [gke](#module\_gke) | terraform-google-modules/kubernetes-engine/google//modules/beta-private-cluster | 34.0.0 |

## Resources

Expand Down Expand Up @@ -85,7 +85,7 @@ No resources.
| <a name="input_monitoring_service"></a> [monitoring\_service](#input\_monitoring\_service) | The monitoring service that the cluster should write metrics to. Automatically send metrics from pods in the cluster to the Google Cloud Monitoring API. VM metrics will be collected by Google Compute Engine regardless of this setting Available options include monitoring.googleapis.com, monitoring.googleapis.com/kubernetes (beta) and none | `string` | `"monitoring.googleapis.com/kubernetes"` | no |
| <a name="input_network"></a> [network](#input\_network) | The VPC network to host the cluster in. | `string` | `"kubernetes-vpc"` | no |
| <a name="input_network_policy"></a> [network\_policy](#input\_network\_policy) | Enable network policy addon | `bool` | `true` | no |
| <a name="input_node_zones"></a> [node\_zones](#input\_node\_zones) | The zones to host the cluster in (optional if regional cluster / required if zonal) | `list(string)` | <pre>[<br/> "us-east1-b"<br/>]</pre> | no |
| <a name="input_node_zones"></a> [node\_zones](#input\_node\_zones) | The zones to host the cluster in (optional if regional cluster / required if zonal) | `list(string)` | <pre>[<br> "us-east1-b"<br>]</pre> | no |
| <a name="input_project_id"></a> [project\_id](#input\_project\_id) | The project ID to host the cluster in | `string` | n/a | yes |
| <a name="input_region"></a> [region](#input\_region) | The region to host the cluster in | `string` | n/a | yes |
| <a name="input_regional"></a> [regional](#input\_regional) | Whether the master node should be regional or zonal | `bool` | `true` | no |
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#tfsec:ignore:google-gke-use-cluster-labels
module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-private-cluster"
version = "35.0.1"
version = "34.0.0"
release_channel = var.release_channel
kubernetes_version = var.kubernetes_version
project_id = var.project_id
Expand Down
3 changes: 1 addition & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ variable "service_account_email" {
description = "Email of service account"
}


variable "http_load_balancing" {
type = bool
description = "Enable http load balancer add-on"
Expand Down Expand Up @@ -148,7 +147,6 @@ variable "gce_pd_csi_driver" {
default = true
}


# ----------------------------------------
# NODE POOL VALUES
# ----------------------------------------
Expand Down Expand Up @@ -301,3 +299,4 @@ variable "user_pool_initial_node_count" {
description = "Number of initial nodes in user pool"
default = 1
}

0 comments on commit 14c664e

Please sign in to comment.