Add support for essential contacts

This commit is contained in:
Julio Castillo
2021-02-24 18:34:17 +01:00
parent 7e429425fe
commit 2d9d81e061
12 changed files with 77 additions and 19 deletions

View File

@@ -182,3 +182,10 @@ variable "logging_exclusions" {
type = map(string)
default = {}
}
variable "contacts" {
description = "List of essential contacts for this resource. Must be in the form EMAIL -> [NOTIFICATION_TYPES]. Valid notification types are ALL, SUSPENSION, SECURITY, TECHNICAL, BILLING, LEGAL, PRODUCT_UPDATES"
type = map(list(string))
default = {}
}