From 0ef5bde9f8a15004610b32b445148b46b53652b3 Mon Sep 17 00:00:00 2001 From: Prabhu <70853875+prabhukiran9999@users.noreply.github.com> Date: Thu, 7 Sep 2023 18:14:12 -0400 Subject: [PATCH] Update variables.tf make additional contacts optional as TF version 1.5 supports it --- variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index aa2d5cd..4252fa7 100644 --- a/variables.tf +++ b/variables.tf @@ -60,10 +60,10 @@ variable "project_spec" { admin_contact_email = string admin_contact_name = string billing_group = string - additional_contacts = list(object({ - name = string - email = string - })) + additional_contacts = optional(list(object({ + name = optional(string,null) + email = optional(string,null) + }))) }) accounts = list(object({ name = string