mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-26 19:31:06 +01:00
Gpu workers support (#515)
* added posibility to use Amazon EKS-Optimized AMI with GPU Support for workers * updated CHANGELOG.md * added missing var prefix * updated Changelog to ver 6.x.x
This commit is contained in:
committed by
Max Williams
parent
0cc058c52c
commit
f79c790153
2
data.tf
2
data.tf
@@ -19,7 +19,7 @@ data "aws_iam_policy_document" "workers_assume_role_policy" {
|
||||
data "aws_ami" "eks_worker" {
|
||||
filter {
|
||||
name = "name"
|
||||
values = ["amazon-eks-node-${var.cluster_version}-${var.worker_ami_name_filter}"]
|
||||
values = ["${var.worker_ami_name_filter_prefix}-${var.cluster_version}-${var.worker_ami_name_filter}"]
|
||||
}
|
||||
|
||||
most_recent = true
|
||||
|
||||
Reference in New Issue
Block a user