Skip to content

Commit c358008

Browse files
authored
Added missing cluster name variable (#142)
* Added missing cluster name variable Added missing cluster name variable. * update docs
1 parent 1ee09d2 commit c358008

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

docs/helpers/new-eks-cluster.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ Specify the AWS Region where the resources will be deployed:
3333
export TF_VAR_aws_region=xxx
3434
```
3535

36+
### 3. Cluster Name
37+
38+
Specify the name of your EKS cluster:
39+
40+
```bash
41+
export TF_VAR_cluster_name=xxx
42+
```
43+
3644
## Deploy
3745

3846
Simply run this command to deploy the example

examples/eks-cluster-with-vpc/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ terraform init
4747
Verify the resources created by this execution
4848

4949
```sh
50-
export TF_VAR_aws_region=<ENTER YOUR REGION> # Select your own region
50+
export TF_VAR_aws_region=<ENTER YOUR REGION> # Select your own region
51+
export TF_VAR_cluster_name=<ENTER YOUR CLUSTER NAME> # Enter your cluster name
5152
terraform plan
5253
```
5354

0 commit comments

Comments
 (0)