-
Notifications
You must be signed in to change notification settings - Fork 2
/
action-groups.tf
30 lines (25 loc) · 977 Bytes
/
action-groups.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// WA Alerts Action Groups
data "azurerm_key_vault_secret" "wa_support_email" {
name = "wa-support-email"
key_vault_id = module.wa_key_vault.key_vault_id
}
module "wa-action-group" {
source = "[email protected]:hmcts/cnp-module-action-group"
location = "global"
env = var.env
resourcegroup_name = azurerm_resource_group.rg.name
action_group_name = "wa-support"
short_name = "wa-support"
email_receiver_name = "WA Support Mailing List"
email_receiver_address = data.azurerm_key_vault_secret.wa_support_email.value
}
module "wa-action-group-camunda" {
source = "[email protected]:hmcts/cnp-module-action-group"
location = "global"
env = var.env
resourcegroup_name = "camunda-${var.env}"
action_group_name = "wa-support"
short_name = "wa-support"
email_receiver_name = "WA Support Mailing List"
email_receiver_address = data.azurerm_key_vault_secret.wa_support_email.value
}