Skip to content

Commit

Permalink
Merge pull request #4 from truefoundry/eks-1-28
Browse files Browse the repository at this point in the history
Upgraded to version 1.28
  • Loading branch information
dunefro authored Dec 6, 2023
2 parents 1c760ea + a0ce387 commit 9b8fe4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ No resources.
| <a name="input_cluster_endpoint_public_access_cidrs"></a> [cluster\_endpoint\_public\_access\_cidrs](#input\_cluster\_endpoint\_public\_access\_cidrs) | List of CIDR blocks which can access the Amazon EKS public API server endpoint | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Name of the EKS cluster | `string` | n/a | yes |
| <a name="input_cluster_security_group_additional_rules"></a> [cluster\_security\_group\_additional\_rules](#input\_cluster\_security\_group\_additional\_rules) | List of additional security group rules to add to the cluster security group created. Set `source_node_security_group = true` inside rules to set the `node_security_group` as source | `any` | `{}` | no |
| <a name="input_cluster_version"></a> [cluster\_version](#input\_cluster\_version) | EKS cluster version | `string` | `"1.28"` | no |
| <a name="input_create_cloudwatch_log_group"></a> [create\_cloudwatch\_log\_group](#input\_create\_cloudwatch\_log\_group) | Determines whether a log group is created by this module for the cluster logs. If not, AWS will automatically create one if logging is enabled | `bool` | `true` | no |
| <a name="input_eks_managed_node_group_defaults"></a> [eks\_managed\_node\_group\_defaults](#input\_eks\_managed\_node\_group\_defaults) | Managed node group defaults | `any` | `{}` | no |
| <a name="input_eks_managed_node_groups"></a> [eks\_managed\_node\_groups](#input\_eks\_managed\_node\_groups) | Map of EKS managed node group definitions to create | `any` | `{}` | no |
Expand Down
2 changes: 1 addition & 1 deletion eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module "aws-eks-kubernetes-cluster" {
source = "terraform-aws-modules/eks/aws"
version = "v19.17.2"
cluster_name = var.cluster_name
cluster_version = "1.27"
cluster_version = var.cluster_version
cluster_enabled_log_types = var.cluster_enabled_log_types
cluster_additional_security_group_ids = var.cluster_additional_security_group_ids
subnet_ids = var.subnet_ids
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ variable "cluster_endpoint_public_access_cidrs" {
default = ["0.0.0.0/0"]
}

variable "cluster_version" {
description = "EKS cluster version"
type = string
default = "1.28"
}

################################################################################
# CloudWatch Log Group
################################################################################
Expand Down

0 comments on commit 9b8fe4c

Please sign in to comment.