Skip to content

Commit

Permalink
Fix: Remove 1.23 restriction on workload identity module (#1595)
Browse files Browse the repository at this point in the history
  • Loading branch information
liggitt committed Mar 27, 2023
1 parent a86ccea commit b23bc86
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions examples/workload_identity/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ module "gke" {
remove_default_node_pool = true
service_account = "create"
node_metadata = "GKE_METADATA"
# https://github.com/terraform-google-modules/terraform-google-kubernetes-engine/issues/1313
kubernetes_version = "1.23"
node_pools = [
{
name = "wi-pool"
Expand Down
2 changes: 0 additions & 2 deletions modules/workload-identity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ The `terraform-google-workload-identity` can create service accounts for you,
or you can use existing accounts; this applies for both the Google and
Kubernetes accounts.

Note: This module currently supports Kubernetes <= 1.23.

### Creating a Workload Identity

```hcl
Expand Down
2 changes: 1 addition & 1 deletion modules/workload-identity/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.0"
version = "~> 2.13"
}
}

Expand Down

0 comments on commit b23bc86

Please sign in to comment.