Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ The following inputs can be used as `step.with` keys
| `aws_eks_cluster_log_types` | String | Comma separated list of cluster log type. See [this AWS doc](https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html). Defaults to `api,audit,authenticator`. |
| `aws_eks_cluster_log_retention_days` | String | Days to store logs. Defaults to `7`. |
| `aws_eks_cluster_logs_skip_destroy` | Boolean | Skip deletion of cluster logs if set to true. Defaults to `false`. |
| `aws_eks_cluster_version` | String | Specify the k8s cluster version. Defaults to `1.28` |
| `aws_eks_cluster_version` | String | Specify the k8s cluster version. Defaults to `1.33` |
| `aws_eks_instance_type` | String | Define the EC2 instance type. See [this list](https://aws.amazon.com/ec2/instance-types/) for reference. Defaults to `t3a.medium`. |
| `aws_eks_instance_ami_id` | String | AWS AMI ID. Will default to the latest Amazon EKS Node image for the cluster version. |
| `aws_eks_instance_user_data_file` | String | Relative path in the repo for a user provided script to be executed with the EC2 Instance creation. See note. |
Expand Down
10 changes: 9 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,16 @@ inputs:
description: "Skip deletion of cluster logs if set to true"
required: false
aws_eks_cluster_version:
type: choice
description: 'Specify the k8s cluster version'
required: false
option:
- 1.29
- 1.30
- 1.31
- 1.32
- 1.33
required: false
default: 1.33
aws_eks_instance_type:
description: 'enter the aws instance type'
required: false
Expand Down
1 change: 0 additions & 1 deletion operations/deployment/terraform/aws/aws_variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,6 @@ variable "aws_eks_cluster_log_skip_destroy" {
variable "aws_eks_cluster_version" {
description = "enter the kubernetes version"
type = number
default = "1.28"
}

variable "aws_eks_instance_type" {
Expand Down