Essential contacts in schemas, and email context substitutions (#3495)
* modules * fast * duplicate diff * fix contacts in FAST stage 0 datasets, update contacts in YAML schemas
This commit is contained in:
committed by
GitHub
parent
153046307f
commit
0a2cc758ac
@@ -137,10 +137,12 @@ resource "google_resource_manager_lien" "lien" {
|
||||
}
|
||||
|
||||
resource "google_essential_contacts_contact" "contact" {
|
||||
provider = google-beta
|
||||
for_each = var.contacts
|
||||
parent = "projects/${local.project.project_id}"
|
||||
email = each.key
|
||||
provider = google-beta
|
||||
for_each = var.contacts
|
||||
parent = "projects/${local.project.project_id}"
|
||||
email = lookup(
|
||||
local.ctx.email_addresses, each.key, each.key
|
||||
)
|
||||
language_tag = "en"
|
||||
notification_category_subscriptions = each.value
|
||||
depends_on = [
|
||||
|
||||
Reference in New Issue
Block a user