Skip to content

Commit af88e7d

Browse files
feat: Support bootstrap_self_managed_addons (#3099)
Co-authored-by: Bryant Biggs <[email protected]>
1 parent d7aea4c commit af88e7d

File tree

25 files changed

+46
-38
lines changed

25 files changed

+46
-38
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,15 @@ We are grateful to the community for contributing bugfixes and improvements! Ple
176176
| Name | Version |
177177
|------|---------|
178178
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
179-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.57 |
179+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.58 |
180180
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9 |
181181
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 3.0 |
182182

183183
## Providers
184184

185185
| Name | Version |
186186
|------|---------|
187-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.57 |
187+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.58 |
188188
| <a name="provider_time"></a> [time](#provider\_time) | >= 0.9 |
189189
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 3.0 |
190190

@@ -236,6 +236,7 @@ We are grateful to the community for contributing bugfixes and improvements! Ple
236236
| <a name="input_access_entries"></a> [access\_entries](#input\_access\_entries) | Map of access entries to add to the cluster | `any` | `{}` | no |
237237
| <a name="input_attach_cluster_encryption_policy"></a> [attach\_cluster\_encryption\_policy](#input\_attach\_cluster\_encryption\_policy) | Indicates whether or not to attach an additional policy for the cluster IAM role to utilize the encryption key provided | `bool` | `true` | no |
238238
| <a name="input_authentication_mode"></a> [authentication\_mode](#input\_authentication\_mode) | The authentication mode for the cluster. Valid values are `CONFIG_MAP`, `API` or `API_AND_CONFIG_MAP` | `string` | `"API_AND_CONFIG_MAP"` | no |
239+
| <a name="input_bootstrap_self_managed_addons"></a> [bootstrap\_self\_managed\_addons](#input\_bootstrap\_self\_managed\_addons) | Indicates whether or not to bootstrap self-managed addons after the cluster has been created | `bool` | `null` | no |
239240
| <a name="input_cloudwatch_log_group_class"></a> [cloudwatch\_log\_group\_class](#input\_cloudwatch\_log\_group\_class) | Specified the log class of the log group. Possible values are: `STANDARD` or `INFREQUENT_ACCESS` | `string` | `null` | no |
240241
| <a name="input_cloudwatch_log_group_kms_key_id"></a> [cloudwatch\_log\_group\_kms\_key\_id](#input\_cloudwatch\_log\_group\_kms\_key\_id) | If a KMS Key ARN is set, this key will be used to encrypt the corresponding log group. Please be sure that the KMS Key has an appropriate key policy (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/encrypt-log-data-kms.html) | `string` | `null` | no |
241242
| <a name="input_cloudwatch_log_group_retention_in_days"></a> [cloudwatch\_log\_group\_retention\_in\_days](#input\_cloudwatch\_log\_group\_retention\_in\_days) | Number of days to retain log events. Default retention - 90 days | `number` | `90` | no |

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.57"
7+
version = ">= 5.58"
88
}
99
}
1010
}

examples/karpenter/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,16 @@ Note that this example may create resources which cost money. Run `terraform des
8989
| Name | Version |
9090
|------|---------|
9191
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
92-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.57 |
92+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.58 |
9393
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.7 |
9494
| <a name="requirement_kubectl"></a> [kubectl](#requirement\_kubectl) | >= 2.0 |
9595

9696
## Providers
9797

9898
| Name | Version |
9999
|------|---------|
100-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.57 |
101-
| <a name="provider_aws.virginia"></a> [aws.virginia](#provider\_aws.virginia) | >= 5.57 |
100+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.58 |
101+
| <a name="provider_aws.virginia"></a> [aws.virginia](#provider\_aws.virginia) | >= 5.58 |
102102
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.7 |
103103
| <a name="provider_kubectl"></a> [kubectl](#provider\_kubectl) | >= 2.0 |
104104

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.57"
7+
version = ">= 5.58"
88
}
99
helm = {
1010
source = "hashicorp/helm"

examples/outposts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ terraform destroy --auto-approve
4646
| Name | Version |
4747
|------|---------|
4848
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
49-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.57 |
49+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.58 |
5050
| <a name="requirement_kubernetes"></a> [kubernetes](#requirement\_kubernetes) | >= 2.20 |
5151

5252
## Providers
5353

5454
| Name | Version |
5555
|------|---------|
56-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.57 |
56+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.58 |
5757
| <a name="provider_kubernetes"></a> [kubernetes](#provider\_kubernetes) | >= 2.20 |
5858

5959
## Modules

examples/outposts/prerequisites/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.57"
7+
version = ">= 5.58"
88
}
99
}
1010
}

examples/outposts/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.57"
7+
version = ">= 5.58"
88
}
99
kubernetes = {
1010
source = "hashicorp/kubernetes"

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

main.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ locals {
2727
resource "aws_eks_cluster" "this" {
2828
count = local.create ? 1 : 0
2929

30-
name = var.cluster_name
31-
role_arn = local.cluster_role
32-
version = var.cluster_version
33-
enabled_cluster_log_types = var.cluster_enabled_log_types
30+
name = var.cluster_name
31+
role_arn = local.cluster_role
32+
version = var.cluster_version
33+
enabled_cluster_log_types = var.cluster_enabled_log_types
34+
bootstrap_self_managed_addons = var.bootstrap_self_managed_addons
3435

3536
access_config {
3637
authentication_mode = var.authentication_mode

modules/eks-managed-node-group/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ module "eks_managed_node_group" {
6464
| Name | Version |
6565
|------|---------|
6666
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
67-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.57 |
67+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.58 |
6868

6969
## Providers
7070

7171
| Name | Version |
7272
|------|---------|
73-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.57 |
73+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.58 |
7474

7575
## Modules
7676

0 commit comments

Comments
 (0)