Skip to content

Commit b23bc86

Browse files
authored
Fix: Remove 1.23 restriction on workload identity module (#1595)
1 parent a86ccea commit b23bc86

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

examples/workload_identity/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ module "gke" {
3838
remove_default_node_pool = true
3939
service_account = "create"
4040
node_metadata = "GKE_METADATA"
41-
# https://github.com/terraform-google-modules/terraform-google-kubernetes-engine/issues/1313
42-
kubernetes_version = "1.23"
4341
node_pools = [
4442
{
4543
name = "wi-pool"

modules/workload-identity/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ The `terraform-google-workload-identity` can create service accounts for you,
1414
or you can use existing accounts; this applies for both the Google and
1515
Kubernetes accounts.
1616

17-
Note: This module currently supports Kubernetes <= 1.23.
18-
1917
### Creating a Workload Identity
2018

2119
```hcl

modules/workload-identity/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
}
2626
kubernetes = {
2727
source = "hashicorp/kubernetes"
28-
version = "~> 2.0"
28+
version = "~> 2.13"
2929
}
3030
}
3131

0 commit comments

Comments
 (0)