Exploring Terraform Outputs
Explore the output variables and check on the cluster that we created.
We'll cover the following...
Viewing output file
We’ll retrieve the nodes of the newly created Kubernetes cluster and see what we got. But, before we do that, we need to create a kubeconfig
file that will provide kubectl
the information on how to access the cluster. We could do that right away with aws
CLI, but we’ll make it a bit more complicated.
To create kubeconfig
, we need to know the name of the cluster and the region in which it’s running. We might have that information in our heads. But let’s imagine that’s not the case. What if ...