From 714a8b82abd289135ccf98fd799d8dd259387e19 Mon Sep 17 00:00:00 2001 From: Adam Lewis <23342526+Adam-D-Lewis@users.noreply.github.com> Date: Fri, 30 Aug 2024 13:35:14 -0500 Subject: [PATCH] fix AWS issue --- src/_nebari/stages/infrastructure/template/aws/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/_nebari/stages/infrastructure/template/aws/main.tf b/src/_nebari/stages/infrastructure/template/aws/main.tf index 356ce8f95..51bcbfd67 100644 --- a/src/_nebari/stages/infrastructure/template/aws/main.tf +++ b/src/_nebari/stages/infrastructure/template/aws/main.tf @@ -74,6 +74,10 @@ module "efs" { efs_security_groups = [local.security_group_id] } +moved { + from = module.efs + to = module.efs[0] +} # ==================== KUBERNETES ===================== module "kubernetes" {