Skip to content

Commit

Permalink
fix node-group with ebs
Browse files Browse the repository at this point in the history
  • Loading branch information
jslopes committed Jun 22, 2021
1 parent 9e674dd commit e84f44c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node-group.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ resource "aws_launch_configuration" "ec2" {
content {
volume_type = lookup(root_block_device.value, "volume_type", null)
volume_size = lookup(root_block_device.value, "volume_size", null)
delete_on_termination = lookup(root_block_device.value, "delete_on_termination", null)
delete_on_termination = lookup(root_block_device.value, "delete_on_termination", null)
encrypted = lookup(root_block_device.value, "encrypted", null)
}
}

Expand Down

0 comments on commit e84f44c

Please sign in to comment.