Skip to content

Commit bdc2d3e

Browse files
committed
fix: Correct implementation
1 parent 2378e31 commit bdc2d3e

File tree

35 files changed

+75
-77
lines changed

35 files changed

+75
-77
lines changed

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.3.2 |
28-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.81 |
28+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
2929

3030
## Providers
3131

3232
| Name | Version |
3333
|------|---------|
34-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.81 |
34+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
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 = ">= 5.81"
7+
version = ">= 5.83"
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.3.2 |
29-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.81 |
29+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
3030
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.16 |
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) | >= 5.81 |
40-
| <a name="provider_aws.remote"></a> [aws.remote](#provider\_aws.remote) | >= 5.81 |
39+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
40+
| <a name="provider_aws.remote"></a> [aws.remote](#provider\_aws.remote) | >= 5.83 |
4141
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.16 |
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 = ">= 5.81"
7+
version = ">= 5.83"
88
}
99
helm = {
1010
source = "hashicorp/helm"

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ module "eks_al2" {
77

88
# EKS Addons
99
cluster_addons = {
10-
coredns = {}
11-
eks-pod-identity-agent = {}
12-
kube-proxy = {}
13-
vpc-cni = {}
14-
eks-node-monitoring-agent = {}
10+
coredns = {}
11+
eks-pod-identity-agent = {}
12+
kube-proxy = {}
13+
vpc-cni = {}
1514
}
1615

1716
vpc_id = module.vpc.vpc_id
@@ -28,8 +27,6 @@ module "eks_al2" {
2827
# This value is ignored after the initial creation
2928
# https://github.com/bryantbiggs/eks-desired-size-hack
3029
desired_size = 2
31-
32-
node_repair_config_enabled = true
3330
}
3431
}
3532

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ module "eks_al2023" {
77

88
# EKS Addons
99
cluster_addons = {
10-
coredns = {}
11-
eks-pod-identity-agent = {}
12-
kube-proxy = {}
13-
vpc-cni = {}
14-
eks-node-monitoring-agent = {}
10+
coredns = {}
11+
eks-pod-identity-agent = {}
12+
kube-proxy = {}
13+
vpc-cni = {}
1514
}
1615

1716
vpc_id = module.vpc.vpc_id
@@ -28,8 +27,6 @@ module "eks_al2023" {
2827
# https://github.com/bryantbiggs/eks-desired-size-hack
2928
desired_size = 2
3029

31-
node_repair_config_enabled = true
32-
3330
# This is not required - demonstrates how to pass additional configuration to nodeadm
3431
# Ref https://awslabs.github.io/amazon-eks-ami/nodeadm/doc/api/
3532
cloudinit_pre_nodeadm = [

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ module "eks_bottlerocket" {
77

88
# EKS Addons
99
cluster_addons = {
10-
coredns = {}
11-
eks-pod-identity-agent = {}
12-
kube-proxy = {}
13-
vpc-cni = {}
14-
eks-node-monitoring-agent = {}
10+
coredns = {}
11+
eks-pod-identity-agent = {}
12+
kube-proxy = {}
13+
vpc-cni = {}
1514
}
1615

1716
vpc_id = module.vpc.vpc_id
@@ -28,8 +27,6 @@ module "eks_bottlerocket" {
2827
# https://github.com/bryantbiggs/eks-desired-size-hack
2928
desired_size = 2
3029

31-
node_repair_config_enabled = true
32-
3330
# This is not required - demonstrates how to pass additional configuration
3431
# Ref https://bottlerocket.dev/en/os/1.19.x/api/settings/
3532
bootstrap_extra_args = <<-EOT

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 = ">= 5.81"
7+
version = ">= 5.83"
88
}
99
}
1010
}

examples/karpenter/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ 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.3.2 |
97-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.81 |
97+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
9898
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.7 |
9999

100100
## Providers
101101

102102
| Name | Version |
103103
|------|---------|
104-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.81 |
105-
| <a name="provider_aws.virginia"></a> [aws.virginia](#provider\_aws.virginia) | >= 5.81 |
104+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
105+
| <a name="provider_aws.virginia"></a> [aws.virginia](#provider\_aws.virginia) | >= 5.83 |
106106
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.7 |
107107

108108
## 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 = ">= 5.81"
7+
version = ">= 5.83"
88
}
99
helm = {
1010
source = "hashicorp/helm"

0 commit comments

Comments
 (0)