From 38934d962518c1d81e8941fe5c9a1aabca36ed17 Mon Sep 17 00:00:00 2001 From: Aleksei Tcelishchev Date: Mon, 11 Sep 2023 00:15:19 -0500 Subject: [PATCH] make efs attachable for stateful example https://github.com/aws-ia/terraform-aws-eks-blueprints/issues/1197#issuecomment-1321182807 --- examples/stateful/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/stateful/main.tf b/examples/stateful/main.tf index 320c1cd7a7..1d3b32bb2c 100644 --- a/examples/stateful/main.tf +++ b/examples/stateful/main.tf @@ -370,6 +370,7 @@ module "efs" { name = local.name # Mount targets / security group + attach_policy = false mount_targets = { for k, v in zipmap(local.azs, module.vpc.private_subnets) : k => { subnet_id = v } }