mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-02-25 20:14:55 +01:00
5 lines
204 B
HCL
5 lines
204 B
HCL
output "answer" {
|
|
description = "Returns true or false depending on if the instance type is able to be EBS optimized."
|
|
value = "${lookup(local.ebs_optimized_types, var.instance_type, false)}"
|
|
}
|