Skip to content
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

fix: EKS Nodegroups - Use pinned version from Scaling Template #53

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.22.1 (Released)
FEATURES:
- Add initial support for Anyscale on EKS.

BUG FIXES:
- Update EKS Node Group autoscaling template vesion assignment so that Terraform doesn't detect changes on every apply.

BREAKING CHANGES:

NOTES:

## 0.22.0 (Released)
FEATURES:
- Add initial support for Anyscale on EKS.
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-anyscale-eks-nodegroups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ resource "aws_eks_node_group" "anyscale_node_groups" {

launch_template {
id = aws_launch_template.anyscale_node_groups[0].id
version = "$Latest"
version = aws_launch_template.anyscale_node_groups[0].latest_version
}

scaling_config {
Expand Down
1 change: 1 addition & 0 deletions modules/aws-anyscale-iam/iam-policies-data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ data "aws_iam_policy_document" "iam_anyscale_crossacct_assumerole_policy" {

#Allow wildcard resources as these are locked down in other ways
#trivy:ignore:avd-aws-0342 trivy:ignore:avd-aws-0057
#trivy:ignore:avd-aws-0342 trivy:ignore:avd-aws-0342
data "aws_iam_policy_document" "iam_anyscale_steadystate_policy" {
#checkov:skip=CKV_AWS_111:Write access required for these items
#checkov:skip=CKV_AWS_356:Wildcards allowed for these items
Expand Down
Loading