Hi, I'm new to IaC, and I'm spinning up an EKS sta...
# general
b
Hi, I'm new to IaC, and I'm spinning up an EKS stack on AWS. I just want to make sure I need two separate stacks: one to manage Kubernetes and the nodes/pods and one to manage the EKS configuration on the AWS side of things. I'm also struggling to find documentation relating to deploying a service mesh using Pulumi
l
You don't need to, but there are benefits to doing it this way.
Separating your base infra from your app-specific infra generally makes things easier to grok. Often aligns along team boundaries too.
b
Alright, understood! I will keep both projects separate.