From 0416cec959b9e8064df1d476420d033ea031bf38 Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Mon, 19 Apr 2021 16:14:27 -0400 Subject: [PATCH] chore: fix conditional create of vpc endpoint submodule --- modules/vpc-endpoints/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/vpc-endpoints/main.tf b/modules/vpc-endpoints/main.tf index 394d471f0..58b3270ee 100644 --- a/modules/vpc-endpoints/main.tf +++ b/modules/vpc-endpoints/main.tf @@ -1,5 +1,5 @@ locals { - endpoints = var.create ? var.endpoints : {} + endpoints = var.create ? var.endpoints : tomap({}) } ################################################################################