Discussion space for cloud platform foundation work.
AWS Operational Patterns
AWS operations differ from other providers in naming, service boundaries, and tooling defaults. The patterns below capture what is useful to remember without reaching for the console. Account Structure AWS uses accounts as the hard isolation boundary. Use separate accounts for production, non-production, shared services, security, and sandbox. Organization-level SCPs enforce guardrails before IAM comes into play. Key differences from other clouds: account is also a billing boundary. some services (CloudTrail, Config) are per-account by default and must be aggregated. VPCs are regional, not global. IAM roles are global, but trust policies reference specific accounts. EKS Cluster Operations An EKS cluster needs a VPC with at least two subnets in different AZs, an IAM role with AmazonEKSClusterPolicy, and a node group with an instance profile. The control plane is managed, but the node group lifecycle and CNI configuration still require operational attention. ...