Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: terraform fmt
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Render terraform docs inside the README.md and push changes back to PR branch
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This module depends on the following external tools:
| <a name="input_enable_workload_identity"></a> [enable\_workload\_identity](#input\_enable\_workload\_identity) | Whether to enable workload identity. If enabled, 'netd' is deployed by GKE. | `bool` | `false` | no |
| <a name="input_kubernetes_version"></a> [kubernetes\_version](#input\_kubernetes\_version) | The version of Kubernetes/GKE to use. | `string` | n/a | yes |
| <a name="input_name"></a> [name](#input\_name) | The name of the GKE cluster. | `string` | n/a | yes |
| <a name="input_node_pools"></a> [node\_pools](#input\_node\_pools) | A map describing the set of node pools to create. | <pre>map(object({<br> auto_upgrade = bool<br> auto_repair = bool<br> image_type = string<br> instance_type = string<br> max_nodes = number<br> min_nodes = number<br> preemptible = bool<br> root_volume_size = number<br> root_volume_type = string<br> pod_range = string<br> taints = list(object({<br> effect = string<br> key = string<br> value = string<br> }))<br> }))</pre> | n/a | yes |
| <a name="input_node_pools"></a> [node\_pools](#input\_node\_pools) | A map describing the set of node pools to create. | <pre>map(object({<br/> auto_upgrade = bool<br/> auto_repair = bool<br/> image_type = string<br/> instance_type = string<br/> max_nodes = number<br/> min_nodes = number<br/> preemptible = bool<br/> root_volume_size = number<br/> root_volume_type = string<br/> pod_range = string<br/> taints = list(object({<br/> effect = string<br/> key = string<br/> value = string<br/> }))<br/> }))</pre> | n/a | yes |
| <a name="input_pod_cidr_name"></a> [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 |
| <a name="input_project_id"></a> [project\_id](#input\_project\_id) | The ID of the project in which to create the GKE cluster. | `string` | n/a | yes |
| <a name="input_region"></a> [region](#input\_region) | The region in which to create the GKE cluster. | `string` | n/a | yes |
Expand Down