From dbbd17a61e8d104f445a57bef9b0aa897890b248 Mon Sep 17 00:00:00 2001 From: Rohith Jayawardene Date: Fri, 10 May 2024 13:58:26 +0100 Subject: [PATCH] fix: the variable was a list not a map --- endpoints.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints.tf b/endpoints.tf index c9ba67e..90747ac 100644 --- a/endpoints.tf +++ b/endpoints.tf @@ -45,6 +45,6 @@ module "endpoints" { } sharing = { - principals = values(var.connectivity_config.endpoints.sharing.principals) + principals = var.connectivity_config.endpoints.sharing.principals } }