From c0130a684a70bf7078b2622d9cd1342020297064 Mon Sep 17 00:00:00 2001 From: Bruno da Silva Valenga Date: Thu, 21 Apr 2022 20:55:27 -0300 Subject: [PATCH] fix type of object --- _variables.tf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_variables.tf b/_variables.tf index 75f0fee..f152e3b 100644 --- a/_variables.tf +++ b/_variables.tf @@ -19,7 +19,11 @@ variable "iam_database_authentication_enabled" { } variable "allow_security_group_ids" { - type = list(string) + type = list(object({ + security_group_id = string + description = string + name = string + })) description = "List of Security Group IDs to allow connection to this DB" default = [] }