mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-18 15:33:46 +01:00
Adding encrypted option to root_block_device of launch_configuration (#761)
* Adding encrypted option to root_block_device of launch_configuration * Updating CHANGELOG.md * Setting back to empty string
This commit is contained in:
@@ -185,6 +185,11 @@ resource "aws_launch_configuration" "workers" {
|
||||
)
|
||||
|
||||
root_block_device {
|
||||
encrypted = lookup(
|
||||
var.worker_groups[count.index],
|
||||
"root_encrypted",
|
||||
local.workers_group_defaults["root_encrypted"],
|
||||
)
|
||||
volume_size = lookup(
|
||||
var.worker_groups[count.index],
|
||||
"root_volume_size",
|
||||
|
||||
Reference in New Issue
Block a user