Reorganizing Definitions
Explore how to reorganize Terraform definitions for AWS EKS clusters, learning how Terraform manages dependencies regardless of file structure. Understand the best practices of grouping variables, outputs, and resources to maintain clarity and streamline cluster management.
We'll cover the following...
We'll cover the following...
Our current way of working
Every resource we’ve defined so far is currently in a different file. That’s a perfectly valid way to use Terraform. It doesn’t really care whether we have one or one thousand files. It concatenates all those with the .tf extension.
What makes Terraform unique is its dependency management. No matter how we organize definitions of different ...