-
Notifications
You must be signed in to change notification settings - Fork 82
Add missing ElastiCache node type: cache.r6gd.large #971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…pdate .gitignore Co-authored-by: wata727 <9624059+wata727@users.noreply.github.com>
rules/utils.go
Outdated
| "cache.r7gd.4xlarge": true, | ||
| "cache.r7gd.8xlarge": true, | ||
| "cache.r7gd.12xlarge": true, | ||
| "cache.r7gd.16xlarge": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot Is cache.r7gd a valid node type? I couldn't find it in the documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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>
wata727
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
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.