feat: Add nitro enclave support for EKS (#1185)

This commit is contained in:
Sean P. Kane
2021-01-28 14:45:41 -08:00
committed by GitHub
parent 6c08a92463
commit 4fc609bd22
4 changed files with 12 additions and 3 deletions

View File

@@ -272,6 +272,14 @@ resource "aws_launch_template" "workers_launch_template" {
)[count.index]
}
enclave_options {
enabled = lookup(
var.worker_groups_launch_template[count.index],
"enclave_support",
local.workers_group_defaults["enclave_support"],
)
}
image_id = lookup(
var.worker_groups_launch_template[count.index],
"ami_id",