Add missing ElastiCache node type: cache.r6gd.large#971
Merged
Conversation
…pdate .gitignore Co-authored-by: wata727 <9624059+wata727@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update rules/utils.go with valid node types
Add missing ElastiCache node types: r6gd.large and r7gd series
Nov 1, 2025
wata727
reviewed
Nov 1, 2025
rules/utils.go
Outdated
| "cache.r7gd.4xlarge": true, | ||
| "cache.r7gd.8xlarge": true, | ||
| "cache.r7gd.12xlarge": true, | ||
| "cache.r7gd.16xlarge": true, |
Member
There was a problem hiding this comment.
@copilot Is cache.r7gd a valid node type? I couldn't find it in the documentation.
Contributor
Author
There was a problem hiding this comment.
You're correct. cache.r7gd is not supported for ElastiCache Redis - it's only available for AWS OpenSearch Service. I've removed all cache.r7gd entries in commit a0cdd25.
The only change now is adding cache.r6gd.large, which was missing from the r6gd series. Note that cache.r7g (without 'd') is supported for Redis and was already in the file.
Co-authored-by: wata727 <9624059+wata727@users.noreply.github.com>
Copilot
AI
changed the title
Add missing ElastiCache node types: r6gd.large and r7gd series
Add missing ElastiCache node type: cache.r6gd.large
Nov 1, 2025
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Updates
rules/utils.goto include missing ElastiCache node type per AWS documentation.Changes
cache.r6gd.large(missing from r6gd family).gitignoreto exclude build artifactDetails
The cache.r6gd.large node type was missing from the r6gd family which supports data tiering for Redis. Total valid node types increased from 91 to 92.
Note: cache.r7gd is not included as it is only supported for AWS OpenSearch Service, not for ElastiCache Redis. ElastiCache Redis supports cache.r7g (without 'd').
Reference: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.