Skip to content

Commit

Permalink
docs: Update fully private cluster example README (#1257)
Browse files Browse the repository at this point in the history
  • Loading branch information
sotoiwa authored Dec 17, 2022
1 parent 90346b8 commit 696af3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions examples/fully-private-eks-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Create a Terraform variable definition file called base.tfvars and update the va

```shell script
region = "us-west-2"
cluster_version = "1.22"
cluster_version = "1.24"
vpc_id = "<vpc-id>"
private_subnet_ids = ["<private-subnet-1>", "<private-subnet-2>", "<private-subnet-3>"]
cluster_security_group_additional_rules = {
Expand Down Expand Up @@ -202,8 +202,6 @@ Create a Terraform variable definition file called base.tfvars and update the va
```shell script
region = "us-west-2"
eks_cluster_id = "eks"
cluster_version= "1.22"

```
#### Step2: Run Terraform INIT
Initialize a working directory with configuration files
Expand Down
4 changes: 2 additions & 2 deletions examples/fully-private-eks-cluster/eks/variables.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variable "cluster_version" {
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.23`)"
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.24`)"
type = string
default = "1.23"
default = "1.24"
}

variable "region" {
Expand Down

0 comments on commit 696af3c

Please sign in to comment.