Expand EKS resources with typed references, insights, and addon versions#7159
Merged
Expand EKS resources with typed references, insights, and addon versions#7159
Conversation
…sions Add typed resource references to EKS cluster (vpc, subnets, security groups), Fargate profiles (subnets, pod execution role), and pod identity associations (IAM role). Add new resources for cluster insights, addon versions, and access policies. Expand nodegroup and addon fields for health, taints, and config. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
- Eagerly populate insight fields from ListInsights summary to avoid N+1 DescribeInsight calls (name, category, insightStatus are @defaults) - Include region in addonVersion __id to prevent cache collisions across regions - Add nil check on DescribeInsight response to prevent nil pointer panic Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
vpc(),clusterSubnets(),clusterSecurityGroups(),clusterSecurityGroup()), Fargate profiles (podExecutionRole(),fargateSubnets()), and pod identity associations (iamRole())aws.eks.insight(cluster upgrade readiness and best practices),aws.eks.addonVersion(compatible add-on versions),aws.eks.accessPolicy(access entry policies)health,taints,releaseVersion,remoteAccess,updateConfig,nodeVersion), addon (health), cluster (health,certificateAuthority), pod identity (modifiedAt,ownerArn)Test plan
make providers/build/aws && make providers/install/aws)mql run aws -c "aws.eks.clusters { vpc clusterSubnets clusterSecurityGroups clusterSecurityGroup }"mql run aws -c "aws.eks.clusters { insights { name category insightStatus } }"mql run aws -c "aws.eks.clusters { availableAddonVersions { addonName addonVersion } }"mql run aws -c "aws.eks.clusters { nodegroups { health taints releaseVersion nodeVersion } }"mql run aws -c "aws.eks.clusters { fargateProfiles { podExecutionRole fargateSubnets } }"mql run aws -c "aws.eks.clusters { accessEntries { accessPolicies } }"mql run aws -c "aws.eks.clusters { addons { health } }"🤖 Generated with Claude Code