Skip to content

Commit

Permalink
Merge pull request #53 from anyscale/brent/eks
Browse files Browse the repository at this point in the history
fix: EKS Nodegroups - Use pinned version from Scaling Template
  • Loading branch information
domcatalano authored Sep 5, 2024
2 parents f8039d4 + 2d8797b commit 477356c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
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

0 comments on commit 477356c

Please sign in to comment.