Description
Using the latest module update, I have tried to disable auto mode on the cluster using the simple config line in my module:
cluster_compute_config = {
enabled = false
}
Surely this should solve the issue but TF apply keeps complaining with the following issue:
Error: compute_config.enabled, kubernetes_networking_config.elastic_load_balancing.enabled, and storage_config.block_storage.enabled must all be set to either true or false
│
│ with module.eks_cluster.aws_eks_cluster.this[0],
│ on .terraform/modules/eks_cluster/main.tf line 35, in resource "aws_eks_cluster" "this":
│ 35: resource "aws_eks_cluster" "this" {
│
╵
Operation failed: failed running terraform plan (exit 1)
So, there seems to be some issue with the locals value being passed through the module or something!