Skip to content

Commit 1a8a1a0

Browse files
committed
Allow new hashicorp/kubernetes version 3.0.0
1 parent 998043f commit 1a8a1a0

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

autogen/main/versions.tf.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ terraform {
3232
}
3333
kubernetes = {
3434
source = "hashicorp/kubernetes"
35-
version = "~> 2.10"
35+
version = ">= 2.10"
3636
}
3737
random = {
3838
source = "hashicorp/random"
@@ -50,7 +50,7 @@ terraform {
5050
}
5151
kubernetes = {
5252
source = "hashicorp/kubernetes"
53-
version = "~> 2.10"
53+
version = ">= 2.10"
5454
}
5555
random = {
5656
source = "hashicorp/random"

modules/acm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ data "google_client_config" "default" {}
9191
| install\_template\_library | Whether to install the default Policy Controller template library | `bool` | `true` | no |
9292
| location | GCP location used to reach cluster. | `string` | n/a | yes |
9393
| metrics\_gcp\_sa\_name | The name of the Google service account for ACM metrics writing | `string` | `"acm-metrics-writer"` | no |
94-
| policy\_bundles | A list of Policy Controller policy bundles git urls (example: <https://github.com/GoogleCloudPlatform/acm-policy-controller-library.git/bundles/policy-essentials-v2022>) to install on the cluster. | `list(string)` | `[]` | no |
94+
| policy\_bundles | A list of Policy Controller policy bundles git urls (example: https://github.com/GoogleCloudPlatform/acm-policy-controller-library.git/bundles/policy-essentials-v2022) to install on the cluster. | `list(string)` | `[]` | no |
9595
| policy\_dir | Subfolder containing configs in ACM Git repo. If un-set, uses Config Management default. | `string` | `""` | no |
9696
| project\_id | GCP project\_id used to reach cluster. | `string` | n/a | yes |
9797
| secret\_type | git authentication secret type, is passed through to ConfigManagement spec.git.secretType. Overriden to value 'ssh' if `create_ssh_key` is true | `string` | `"ssh"` | no |

modules/beta-autopilot-private-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"
32-
version = "~> 2.10"
32+
version = ">= 2.10"
3333
}
3434
random = {
3535
source = "hashicorp/random"

modules/beta-autopilot-public-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"
32-
version = "~> 2.10"
32+
version = ">= 2.10"
3333
}
3434
random = {
3535
source = "hashicorp/random"

modules/beta-private-cluster-update-variant/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"
32-
version = "~> 2.10"
32+
version = ">= 2.10"
3333
}
3434
random = {
3535
source = "hashicorp/random"

modules/beta-private-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"
32-
version = "~> 2.10"
32+
version = ">= 2.10"
3333
}
3434
random = {
3535
source = "hashicorp/random"

modules/beta-public-cluster-update-variant/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"
32-
version = "~> 2.10"
32+
version = ">= 2.10"
3333
}
3434
random = {
3535
source = "hashicorp/random"

modules/beta-public-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"
32-
version = "~> 2.10"
32+
version = ">= 2.10"
3333
}
3434
random = {
3535
source = "hashicorp/random"

modules/private-cluster-update-variant/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.10"
28+
version = ">= 2.10"
2929
}
3030
random = {
3131
source = "hashicorp/random"

modules/private-cluster/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.10"
28+
version = ">= 2.10"
2929
}
3030
random = {
3131
source = "hashicorp/random"

0 commit comments

Comments
 (0)