Skip to content

Commit dc4de4f

Browse files
authored
fix: Update minimum required version of AWS provider for provisioned control plane (#3603)
1 parent 943fd57 commit dc4de4f

File tree

29 files changed

+42
-42
lines changed

29 files changed

+42
-42
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.103.0
3+
rev: v1.104.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_docs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,15 +394,15 @@ We are grateful to the community for contributing bugfixes and improvements! Ple
394394
| Name | Version |
395395
|------|---------|
396396
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
397-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.20 |
397+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.23 |
398398
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9 |
399399
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 4.0 |
400400

401401
## Providers
402402

403403
| Name | Version |
404404
|------|---------|
405-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.20 |
405+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.23 |
406406
| <a name="provider_time"></a> [time](#provider\_time) | >= 0.9 |
407407
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 4.0 |
408408

examples/eks-auto-mode/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Note that this example may create resources which cost money. Run `terraform des
2525
| Name | Version |
2626
|------|---------|
2727
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
28-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.20 |
28+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.23 |
2929

3030
## Providers
3131

3232
| Name | Version |
3333
|------|---------|
34-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.20 |
34+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.23 |
3535

3636
## Modules
3737

examples/eks-auto-mode/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.20"
7+
version = ">= 6.23"
88
}
99
}
1010
}

examples/eks-hybrid-nodes/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Note that this example may create resources which cost money. Run `terraform des
2626
| Name | Version |
2727
|------|---------|
2828
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
29-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.20 |
29+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.23 |
3030
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 3.0 |
3131
| <a name="requirement_http"></a> [http](#requirement\_http) | >= 3.4 |
3232
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 2.5 |
@@ -36,8 +36,8 @@ Note that this example may create resources which cost money. Run `terraform des
3636

3737
| Name | Version |
3838
|------|---------|
39-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.20 |
40-
| <a name="provider_aws.remote"></a> [aws.remote](#provider\_aws.remote) | >= 6.20 |
39+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.23 |
40+
| <a name="provider_aws.remote"></a> [aws.remote](#provider\_aws.remote) | >= 6.23 |
4141
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 3.0 |
4242
| <a name="provider_http"></a> [http](#provider\_http) | >= 3.4 |
4343
| <a name="provider_local"></a> [local](#provider\_local) | >= 2.5 |

examples/eks-hybrid-nodes/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.20"
7+
version = ">= 6.23"
88
}
99
helm = {
1010
source = "hashicorp/helm"

examples/eks-managed-node-group/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.20"
7+
version = ">= 6.23"
88
}
99
}
1010
}

examples/karpenter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ Note that this example may create resources which cost money. Run `terraform des
9494
| Name | Version |
9595
|------|---------|
9696
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
97-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.20 |
97+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.23 |
9898
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 3.0 |
9999

100100
## Providers
101101

102102
| Name | Version |
103103
|------|---------|
104-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.20 |
104+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.23 |
105105
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 3.0 |
106106

107107
## Modules

examples/karpenter/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.20"
7+
version = ">= 6.23"
88
}
99
helm = {
1010
source = "hashicorp/helm"

examples/self-managed-node-group/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.20"
7+
version = ">= 6.23"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)