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

Pin launch_template_version for EKS module #1315

Merged
merged 5 commits into from
Aug 9, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ module "eks" {

create_launch_template = true
pre_userdata = local.pre_userdata
# Issue in v17.1.0, where each plan will have a change for the templates, this cause our divergence pipeline fail"
# Pinned the version until this fix get merged https://github.com/terraform-aws-modules/terraform-aws-eks/pull/1447
launch_template_version = "1"

instance_types = lookup(local.node_size, terraform.workspace, local.node_size["default"])
k8s_labels = {
Expand All @@ -49,6 +52,7 @@ module "eks" {
application = "moj-cloud-platform"
business-unit = "platforms"
}

}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.6
VERSION=0.7
PREFIX=ministryofjustice/cloud-platform-tests
TAG=$(VERSION)

Expand Down