Skip to content

Commit

Permalink
Merge pull request #516 from jensheerin/Terraform-AVDALZ-updates
Browse files Browse the repository at this point in the history
alert variable update
  • Loading branch information
danycontre authored Oct 25, 2023
2 parents 63be51d + 4b0e581 commit 2fdfc61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion workload/terraform/modules/alerts/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "azurerm_monitor_action_group" "ag" {
short_name = "avdactgrp" # short_name to be in the range (1 - 12)
email_receiver {
name = "sendtoavdadmin"
email_address = "[email protected]"
email_address = var.email_address
}
}

Expand Down
5 changes: 5 additions & 0 deletions workload/terraform/modules/alerts/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,9 @@ variable "prefix" {
variable "rg_avdi" {
type = string
description = "Name of the Resource group in which to deploy avd service objects"
}

variable "email_address" {
type = string
description = "Email address to send alerts to"
}

0 comments on commit 2fdfc61

Please sign in to comment.