From 4e0db9c1e661db1b95d4c5804e5b4a3482407c27 Mon Sep 17 00:00:00 2001 From: darox Date: Fri, 23 Feb 2024 11:33:02 +0100 Subject: [PATCH 1/2] Variables: add pod_range Signed-off-by: darox --- variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/variables.tf b/variables.tf index 2bf4c19..fe7ebe2 100644 --- a/variables.tf +++ b/variables.tf @@ -46,6 +46,7 @@ variable "node_pools" { preemptible = bool root_volume_size = number root_volume_type = string + pod_range = string taints = list(object({ effect = string key = string From 8341b0a653cffcb144a4760b423dd292c90457b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Feb 2024 10:33:51 +0000 Subject: [PATCH 2/2] terraform-docs: automated action --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 693e5b5..03bb3fc 100644 --- a/README.md +++ b/README.md @@ -41,10 +41,11 @@ This module depends on the following external tools: | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [additional\_ip\_range\_pods](#input\_additional\_ip\_range\_pods) | additional\_ip\_range\_pods | `list(any)` | `[]` | no | +| [deletion\_protection](#input\_deletion\_protection) | Whether to enable deletion protection for the GKE cluster. | `bool` | `false` | no | | [enable\_workload\_identity](#input\_enable\_workload\_identity) | Whether to enable workload identity. If enabled, 'netd' is deployed by GKE. | `bool` | `false` | no | | [kubernetes\_version](#input\_kubernetes\_version) | The version of Kubernetes/GKE to use. | `string` | n/a | yes | | [name](#input\_name) | The name of the GKE cluster. | `string` | n/a | yes | -| [node\_pools](#input\_node\_pools) | A map describing the set of node pools to create. |
map(object({
auto_upgrade = bool
auto_repair = bool
image_type = string
instance_type = string
max_nodes = number
min_nodes = number
preemptible = bool
root_volume_size = number
root_volume_type = string
taints = list(object({
effect = string
key = string
value = string
}))
}))
| n/a | yes | +| [node\_pools](#input\_node\_pools) | A map describing the set of node pools to create. |
map(object({
auto_upgrade = bool
auto_repair = bool
image_type = string
instance_type = string
max_nodes = number
min_nodes = number
preemptible = bool
root_volume_size = number
root_volume_type = string
pod_range = string
taints = list(object({
effect = string
key = string
value = string
}))
}))
| n/a | yes | | [pod\_cidr\_name](#input\_pod\_cidr\_name) | The name of the secondary CIDR used for pods. Must be created separately as a secondary CIDR on the subnet used for the cluster. | `string` | n/a | yes | | [project\_id](#input\_project\_id) | The ID of the project in which to create the GKE cluster. | `string` | n/a | yes | | [region](#input\_region) | The region in which to create the GKE cluster. | `string` | n/a | yes |