Skip to content

Commit

Permalink
Update variables.tf
Browse files Browse the repository at this point in the history
- Change to tags format to support additional contacts. Another easy way i guess we can do is to just set `tags = any`  type and that should work. But that might have implications when applying terraform with different tags in the future
  • Loading branch information
prabhukiran9999 authored Sep 7, 2023
1 parent fdb1193 commit 88b14fb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,17 @@ variable "project_spec" {
type = object({
identifier = string
name = string
tags = map(string)
tags = object({
account_coding = string
ministry_name = string
admin_contact_email = string
admin_contact_name = string
billing_group = string
additional_contacts = list(object({
name = string
email = string
}))
})
accounts = list(object({
name = string
environment = string
Expand Down

0 comments on commit 88b14fb

Please sign in to comment.