Skip to content

Commit

Permalink
Update variables.tf
Browse files Browse the repository at this point in the history
make additional contacts optional as TF version 1.5 supports it
  • Loading branch information
prabhukiran9999 authored Sep 7, 2023
1 parent 5ec6a90 commit 0ef5bde
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0ef5bde

Please sign in to comment.