Correcting name of module (#666)

This commit is contained in:
Amit Thakkar
2020-01-15 08:05:10 +01:00
committed by Thierno IB. BARRY
parent c5f50d5969
commit b70a828877

View File

@@ -22,11 +22,11 @@ A full example leveraging other community modules is contained in the [examples/
```hcl ```hcl
data "aws_eks_cluster" "cluster" { data "aws_eks_cluster" "cluster" {
name = module.eks.cluster_id name = module.my-cluster.cluster_id
} }
data "aws_eks_cluster_auth" "cluster" { data "aws_eks_cluster_auth" "cluster" {
name = module.eks.cluster_id name = module.my-cluster.cluster_id
} }
provider "kubernetes" { provider "kubernetes" {